Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello All,
I believe this is a very basic thing but some how i'm not able to figure it out.
Basically, i have a text box which i would like to display only when the Month selected is less then June(Jan, Feb, Mar, Apr, May or Jun).
Even if one of these months or more then one of this(all the 6 or any number of them) is selected, the text box should be hidden.
TIA!!
In Layout Show Condition you can use
Min(Month)<=6
or
Min(Month)>6
Depending on when you want to hide, month is assumed to be Loaded with e.g. Month(Date)
May be this as a conditional hide/show expression
WildMatch(Month, 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun') >= 1 and GetSelectedCount(Month) = 1
In Layout Show Condition you can use
Min(Month)<=6
or
Min(Month)>6
Depending on when you want to hide, month is assumed to be Loaded with e.g. Month(Date)
Thanks both for the quick suggestions.