I am using this following formula to round the NEAREST thousand, It is rounding but it is giving '0' in the HUNDRED place, I want to remove '0' in the HUNDRED place. Is there any way I can remove '0'?.
Round({YourNumber},-3) will round to the NEAREST thousand.
If you want to always round up, try this:
Round({YourNumber}+499.9999999,-3)
Round({YourNumber},-3) will round to the NEAREST thousand.
If you want to always round up, try this:
Round({YourNumber}+499.9999999,-3)