How do I round a number from 325 to 400?

How do I round a number from 325 to 400? I want it to be able to round the amount to an integer without the tens digits.

Use the Ceiling math function.

Ceiling(N/100)*100

where N is your number.

thank u :pray: :blush: