Andrian2712
New Member
- Joined
- Nov 17, 2023
- Messages
- 6
- Office Version
- 2021
- 2019
- 2016
- 2013
- 2011
- 2010
- 2007
- Platform
- Windows
Hello, i got a little problem to my rounding function, i got an example
Aaron = 120,200
Bella = 120,350
Charlie = 120,670
Dean = 120,880
i wanted to round to
Aaron = 120,000
Bella = 120,500
Charlie = 120,500
Dean = 121,000
So far, i got into this mess, working formula, but not intended (im using R11 cell as example)
=IF(MOD(R11;1000)<=250;ROUNDDOWN(R11;-3);IF(MOD(R11;1000)>250;ROUNDUP(R11;-3);IF(MOD(R11;1000)<=750;ROUNDDOWN(R11;-3);IF(MOD(R11;1000)>750;ROUNDUP(R11;-3)))))
with this formula, i got the rounding a lil messed up, example
Aaron = 120,000
Bella = 121,000
Charlie = 121,000
Dean = 121,000
Any help or comments really appreciated
Thankyou
Aaron = 120,200
Bella = 120,350
Charlie = 120,670
Dean = 120,880
i wanted to round to
Aaron = 120,000
Bella = 120,500
Charlie = 120,500
Dean = 121,000
So far, i got into this mess, working formula, but not intended (im using R11 cell as example)
=IF(MOD(R11;1000)<=250;ROUNDDOWN(R11;-3);IF(MOD(R11;1000)>250;ROUNDUP(R11;-3);IF(MOD(R11;1000)<=750;ROUNDDOWN(R11;-3);IF(MOD(R11;1000)>750;ROUNDUP(R11;-3)))))
with this formula, i got the rounding a lil messed up, example
Aaron = 120,000
Bella = 121,000
Charlie = 121,000
Dean = 121,000
Any help or comments really appreciated
Thankyou