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.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 495 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!