I'm trying to take a number add 10% and then round up to the nearst 10th
Example the number is 74 so I want to add 10% and then round up so my total would be 90
74*10% = 7.4
74+7.4 = 81.4
Roundup to 90
I'm using =MROUND(ROUNDUP([Estimated number of participants]@row * 0.1) + ([Estimated number of participants]@row), 10)
but its returning 80. Formulas are not my strong suite and guess how to rewrite this?
Best Answer
-
Hi Connie, is this what you're looking for?
=ROUNDUP([Estimated number of participants]@row * 1.1 / 10) * 10
It takes your number, adds 10%, then divides that by 10. Then rounds up the nearest integer and multiplies that by 100.
= 74
= 74+7.4 = 81.4
= 8.14
= 9
=9*10 = 90
Answers
-
Hi Connie, is this what you're looking for?
=ROUNDUP([Estimated number of participants]@row * 1.1 / 10) * 10
It takes your number, adds 10%, then divides that by 10. Then rounds up the nearest integer and multiplies that by 100.
= 74
= 74+7.4 = 81.4
= 8.14
= 9
=9*10 = 90
-
This is fantastic! You are my hero :)
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.5K Get Help
- 430 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 146 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!