Rounding Prices to the Nearest Nickel, Dime, Quarter and Dollar

Problem:

Rounding the prices in column A to the nearest nickel (5 cents), dime (10 cents), quarter (25 cents), and dollar.

Solution:

Use the ROUND function in the following formulas:
Nearest Nickel Formula =ROUND(A2*20,0)/20
Nearest Dime Formula =ROUND(A2*10,0)/10
Nearest Quarter Formula =ROUND(A2*4,0)/4
Nearest Dollar Formula =ROUND(A2,0)

Comments

Leave a Reply

Your email address will not be published. Required fields are marked *

Terms and Conditions of use

The applications/code on this site are distributed as is and without warranties or liability. In no event shall the owner of the copyrights, or the authors of the applications/code be liable for any loss of profit, any problems or any damage resulting from the use or evaluation of the applications/code.