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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
2 Replies
sunny_talwar
MVP
MVP

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..