Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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......