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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Hide some values in multi box

hi every one,

my requirement is to hide some values in multi box.

iam trying one format but its not working .

=aggr(only({<HourOffset-={'<0'}>}HourOffset),HourOffset)

my data is like this

HourOffSet <0

                    0-12

                    12-24

                    24-48

                    >48

i dont want to display <0 and >48 values in multi-box.

thank in advance

1 Solution

Accepted Solutions
sunny_talwar

May be like this

If(not WildMatch(HourOffSet, '*>*', '*>*'), HourOffSet)

View solution in original post

3 Replies
sunny_talwar

May be like this

If(not WildMatch(HourOffSet, '*>*', '*>*'), HourOffSet)

sunny_talwar

Or this

=Aggr(Only({1<HourOffset - = {'*<*', '*>*'}>} HourOffset), HourOffset)

maxgro
MVP
MVP

=If(WildMatch(HourOffSet, '*-*'), HourOffSet)