Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
danieldors
Contributor III
Contributor III

If Multiple Criteria

Hello,

 

I'm trying to combine the two formulas below into one with no success, any suggestions is appreciated. Thank you.

= if ((phoneNumber > 0), phoneNumber,
if ((phoneNumber = 0), 'No Phone', 'No Phone'))

= if (( CellPhone > 0), CellPhone,
if (( CellPhone = 0), 'No Phone', 'No Phone'))

1 Reply
MayilVahanan

HI Daniel

May be , try like below

If(PhoneNumber > 0, PhoneNumber, 

If(CellPhone > 0, CellPhone, 'No Phone'))

Hope if phonenumber is there, we don't need to consider CellPhone info.. 

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.