Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
bhavyad
Contributor
Contributor

classify numbers in bar chart into a range

Hello All,

I would need suggestion on creating the bar chart with the range of column having the range 1-500,500-1000,1000-2000,2000-4000,greater than 4000

as of now i have used class , but I am looking for the above range 

bhavyad_0-1684894567185.png

 

Labels (3)
1 Reply
MayilVahanan

Hi

For different value classification, try to use "IF condition" to get the expected results

like:

If(urfield <= 500, '1-500',

if(urfield <= 1000, '501-1000', '>1000'))

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