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: 
berryandcherry6
Creator III
Creator III

Getting only one value dimension for chart.

Hi ,

I have a Fruits column, where

Dimension: Fruits

FruitsID Fruits

  1             Apple

  2             Banana

3               Mango

4              Organe

In this i need to get only one fruitname to display in dimension.How could i display, or add equation in dimension so it only chooses only required fruits name

Please help me. Any help is appreciated.

1 Solution

Accepted Solutions
arulsettu
Master III
Master III

if you want to display only one fruit in dimension

you can try in dimension like this

if(match(Fruits,'Apple'),Fruits)

or

in expression

count({<Fruits={'Apple'}>}sales)

View solution in original post

2 Replies
arulsettu
Master III
Master III

if you want to display only one fruit in dimension

you can try in dimension like this

if(match(Fruits,'Apple'),Fruits)

or

in expression

count({<Fruits={'Apple'}>}sales)

berryandcherry6
Creator III
Creator III
Author

Thanks Arul,

I choose first expresion, as i need to put in Dimension.

Regards