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

Announcements
Join us in NYC Sept 4th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
rathnam_qv
Creator
Creator

filter condition

hi all,

i have Month as Listbox, it contain all month names but i want to show JAN and FEB only how can i achieve this

please help me...

Thanks in advance

smiley

3 Replies
Not applicable

if(match(Month,'JAN','FEB'),Month) as Month_new

tresesco
MVP
MVP

Goto tab ''General' ->Field-> Select Expression:

If(Month='JAN' or Month='FEB', Month)

Thanks.

Sokkorn
Master
Master

Hi Munirathnam,

Create list box with expression =If(Match(Month,'JAN','FEB'),Month,Null())

Regards,

Sokkorn