Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
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.