Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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
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)
Thanks sunny its working..