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: 
sr_qlikview
Creator
Creator

how to show the value on data point for one specific country

Bar Chart > Country vs sum(sales) - how do you show the value on data point for one specific country ignoring other values display (ex: USA) ?

1 Solution

Accepted Solutions
MayilVahanan

HI

In expression tab, ->'+' -> show value

in that, if(Country = 'USA',1,0)

Then untick the values on data point.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
MayilVahanan

HI

In expression tab, ->'+' -> show value

in that, if(Country = 'USA',1,0)

Then untick the values on data point.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Not applicable

Create flag in the ETL

IF(Country='ABC',1,0) as Country_Flag

Then in create two expressions

1st:

 

=

SUm({<Country_Flag={1}>} Sales)

2nd : 

  

=

SUm({<Country_Flag={0}>} Sales)

Then for the 1st expression show value on the data point

Good Luck..!!