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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
Pragya
Creator
Creator

aggr issue in bar graph

Hi all, 

I have a bar graph where sometimes if value of one bar is higher than other bar i find a grey space on the top of the bar graph. Which is something like this:

Pragya_0-1660179631693.png

 

I used aggr formula here but then the issue i got is, the graph has non rounded value. Can i use something that after aggr formula, it rounds to nears 500 or thousand. 

The formula i am using is 

=max(aggr(count (distinct Column_measure),Dimension1,Dimension2)) * 1.75

Pragya_1-1660181664120.png

 

 

 

Labels (1)
  • Chart

1 Solution

Accepted Solutions
avinashelite
MVP
MVP

Try like this 

=round(max(aggr(count (distinct Column_measure),Dimension1,Dimension2)) * 1.75,100)

View solution in original post

4 Replies
avinashelite
MVP
MVP

Do you need to the forced zero axis ? I mean to start the scale with 0 if you disable then according to the data it will get auto aligned 

Pragya
Creator
Creator
Author

I need the force zero axis

avinashelite
MVP
MVP

Try like this 

=round(max(aggr(count (distinct Column_measure),Dimension1,Dimension2)) * 1.75,100)

Pragya
Creator
Creator
Author

You are a star!

Thankyou - it works