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
- 66.9K Get Help
- 441 Global Discussions
- 153 Industry Talk
- 501 Announcements
- 5.4K Ideas & Feature Requests
- 85 Brandfolder
- 155 Just for fun
- 79 Community Job Board
- 511 Show & Tell
- 34 Member Spotlight
- 2 SmartStories
- 308 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!