Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

where clause in expression

i m new to qlikview and its my fist post......... hope i will get the solution

I have a bar chart with ITEM_NAME as dimension and SUM(QUANTIT) as expression

I want to show the unit of item in text box....

i.e

If user select any particular item from list box so apropriate unit of that item (may be more then one (e.g water can be in Liter or bottols) display on text box or any other way to do this...?

thnks alot

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Maybe like

= if( GetSelectedCount(ITEM_NAME) = 1,

'Units of '& ITEM_NAME&' are: '& concat (distinct UNIT_NAME,' - ')

)

View solution in original post

3 Replies
swuehl
MVP
MVP

Maybe like

= if( GetSelectedCount(ITEM_NAME) = 1,

'Units of '& ITEM_NAME&' are: '& concat (distinct UNIT_NAME,' - ')

)

Not applicable
Author

thnks alot swuehl !!!

thats perfect and quick ....

further i want to know can i get the same with regular expression???

swuehl
MVP
MVP

Hm, can you give an example in pseudo code what you intend to do?