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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Richard84
Contributor
Contributor

EXpressions

I have a bar chart and I want to get a percentage of numbers that are lower than say 1000gr and a percentage of numbers below 1500gr and so on... the X-axis(variable name: weight) displays 1000gr, 1500gr, 2000gr.......

this is what I have been messing with,

if([Weight]<=1000, count(Total [Fish weight]<0.999),[Fish weight])

Labels (1)
1 Solution

Accepted Solutions
Or
MVP
MVP

Have a look at using the Class() function.

View solution in original post

2 Replies
Or
MVP
MVP

Have a look at using the Class() function.

Richard84
Contributor
Contributor
Author

Thank you it worked a treat.