Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
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.