You need to sign in to do that
Don't have an account?
brianwhi
If...Then Help Needed
Hello,
I'm trying to create an if...then function based on the following:
- If EMAIL is blank, move EMAIL2 to NEW FIELD
- If EMAIL and EMAIL2 are blank, move EMAILFWDADDRESS to NEW FIELD
I've gotten the two forumlas to work separately but can't figure out how to combine them into one long formula.
IF( LEN (Email) =0 , Email_2__c , Email)
IF(AND (LEN (Email)=0, LEN (Email_2__c)=0), emailfwdaddress__c , Email)
Can anyone offer any help?
Thanks!
I'm trying to create an if...then function based on the following:
- If EMAIL is blank, move EMAIL2 to NEW FIELD
- If EMAIL and EMAIL2 are blank, move EMAILFWDADDRESS to NEW FIELD
I've gotten the two forumlas to work separately but can't figure out how to combine them into one long formula.
IF( LEN (Email) =0 , Email_2__c , Email)
IF(AND (LEN (Email)=0, LEN (Email_2__c)=0), emailfwdaddress__c , Email)
Can anyone offer any help?
Thanks!
I got the following error message:
Error: Incorrect number of parameters for function IF(). Expected 3, received 2
I think all that's missing is what you'd what to do if Email_2__c is not blank, which you would put after the second-to-last close parenthesis: