
Creator
2015-09-15
03:01 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
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.
- Tags:
- swathiraj
945 Views
3 Replies

MVP
2015-09-15
03:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Try this:
=Ceil(250, 100)
739 Views

MVP
2015-09-15
03:04 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Or this:
=Ceil(RangeMax(22.9,250,100), 100)


Specialist III
2015-09-15
03:08 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can use round(RangeMax(22.9,250,100), 100) also.
739 Views
