Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

If/And Function in Qlik

Hello Qlik friends,

I want to be able to write an if/and statement in a measure.

Example:

if(program name='NA',and(fiscal month='Jan')),50000,

     if(program name ='EMEA',and(fiscal month='Jan',20000 )

Please let me know if this can be done.

thank you!

Ken

1 Solution

Accepted Solutions
sunny_talwar

May be this

If(program name = 'NA' and fiscal month = 'Jan', 50000,

     If(program name = 'EMEA' and fiscal month = 'Jan', 20000))

View solution in original post

2 Replies
sunny_talwar

May be this

If(program name = 'NA' and fiscal month = 'Jan', 50000,

     If(program name = 'EMEA' and fiscal month = 'Jan', 20000))

Anonymous
Not applicable
Author

It works, thank you so much!!! Making a co-op look really good