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: 
nareshthavidishetty
Creator III
Creator III

Default Months

Hi my list box consists month from Jan to Dec but i need to show only two months like only Nov And Dec

can any one help me

2 Replies
sunny_talwar

May be try this as your list box condition

If Months are calculated in the script using Month() function:

If(Match(Num(Month), 11, 12), Month)

If Months are text, then this:

If(Match(Month, 'Nov', 'Dec'), Month)

nareshthavidishetty
Creator III
Creator III
Author

Thanks sunny its working..