Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
barbora_s
Contributor II
Contributor II

Show sales > 0

Hi guys,

new to Qlik, would appreciate help.

Using the Cloud Sense. Putting together a bar chart with dimension Customer. How can i show only customers, where SUM(Sales > 0)? - in case below it would then be showing sales for X and Z.

CustomerSales
X1
Y0
X2
Z1
Y0
W0

Thanks!!

B.

1 Solution

Accepted Solutions
avinashelite

Or try like this

sum({<Sales={">0"}>}Sales)

View solution in original post

5 Replies
OmarBenSalem

as dimension:

Customer

As measure:

sum(Sales)

then under adds on; uncheck show zero values

avinashelite

Or try like this

sum({<Sales={">0"}>}Sales)

Chanty4u
MVP
MVP

or

Sum(sales) > 0

barbora_s
Contributor II
Contributor II
Author

Hi guys,

thanks a lot. Will try ur answers tonight and mark the answer.

Have a good one!

B.

zebhashmi
Specialist
Specialist

this one two

sum(if(Sales>0,Sales))