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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
grajmca_sgp123
Creator
Creator

Rounding nearest Integer value for Max value

Hi ,

RangeMax(22.9,250,100) --->i will get the 250

If i use Ceil fun or round fun also i will get same results.

But my requirement is I want to get 300 which is nearest value for max value.How can we achieve.

3 Replies
sunny_talwar

Try this:

=Ceil(250, 100)

sunny_talwar

Or this:

=Ceil(RangeMax(22.9,250,100), 100)

senpradip007
Specialist III
Specialist III

You can use round(RangeMax(22.9,250,100), 100) also.