on 2022 Nov 30 3:18 PM
Hello
I am trying to create a variable to return an email address that may exist in one of three places
We have three fields for email : 'Work Email'; 'User Email'; and 'Email'. My variable should return the Work Email first.
Where there is no 'Work email', it should return the 'User email', and where there is no 'Work email' or 'User Email', it should return 'Email'.
So to clarify:
No Work Email Then User Email
No User Email Then Work Email
No User Email or Work Email Then Email
No User Email or Email Then Work Email
My current formula looks like this, but it's not quite working and I am hoping that someone is able to assist please
Many thanks in advance
Dan
Request clarification before answering.
Hi,
this should do a job.
= If Not(IsNull([Work E-Mail Address])) Then [Work E-Mail Address]
ElseIf Not(IsNull([User Email])) Then [User Email]
ElseIf Not(IsNull([Email])) Then [Email]
Else "unknown"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ah Thank you so much krisa24 !!
Perfect
Thanks for your help and apologies for not replying sooner
With regards
Dan
User | Count |
---|---|
73 | |
30 | |
8 | |
8 | |
7 | |
6 | |
6 | |
4 | |
4 | |
4 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.