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

Announcements
Qlik Connect 2026! Turn data into bold moves, April 13 -15: Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Nested if ?

Hi All,

I am in need to use nested if conditon in my application..

please share the nested if application ..

Regards,

Helen

2 Replies
maxgro
MVP
MVP

if('z'='a', 1,

if('z'='b', 2,

if('z'='c', 3,

'z not found'

)))

MK_QSL
MVP
MVP

You can use something like below

If(Customer = 'A', 'Germany',

     If(Customer = 'B', 'Spain',

          If(Customer = 'C', 'France',

               'UK')))

Any customer outside name 'A', 'B' or 'C' will be allocated country as UK......