G Guest Feb 20, 2006 #1 I am taking a specific cell, mulitiplying by 10% adding together, and the outcome I want to be rounded to the nearest nickel.
I am taking a specific cell, mulitiplying by 10% adding together, and the outcome I want to be rounded to the nearest nickel.
G Guest Feb 20, 2006 #2 =CEILING(A3*$B$1,0.05) Displays .85 or =FLOOR(A3*$B$1,0.05) Displays .80 where your cell A3 = .75 and Cell B1 = 1.10 and actual result is .825 HTH
=CEILING(A3*$B$1,0.05) Displays .85 or =FLOOR(A3*$B$1,0.05) Displays .80 where your cell A3 = .75 and Cell B1 = 1.10 and actual result is .825 HTH
B Bob Phillips Feb 20, 2006 #3 =ROUND(A1*110%,2) -- HTH Bob Phillips (remove nothere from the email address if mailing direct)