Forum Discussion
AndyPeper
Oct 23, 2022Copper Contributor
calculated Email column
i'm trying to set a calculated Email column When i set this formula to concatenate from First Nam & Name it works perfectly =[First Name]&""&NAME&"@"&"somedomain.some" The problem is one user have...
- Oct 23, 2022
The syntax is like this 🙂
=IF([First Name]="Ash","HerEmail",[First Name]&""&NAME&"@"&"somedomain.some")
If it's her name then set her email, else set the whats inputed 🙂
Syntax is the same as in Excel:
=IF( condition1 , IF( condition2, TRUE , FALSE) , IF( condition3, TRUE , FALSE) )
AndyPeper
Oct 23, 2022Copper Contributor
I tried this and seems to work for multiple exeption
=IF([First Name]="Ash","HerEmail",IF([First Name]="Carol Ann","HerEmail",[First Name]&""&NAME&"@"&"somedomain.come"))
Oct 23, 2022
Yes exactly! It becomes basicly nested in each other. 🙂 You can also do as I wrote in the example above!