How do I calculate without decimals in excel?

G

Guest

I'm working on a spreadsheet where certain columns are to be rounded to the
nearest whole number, while the answer is to be in currency. Excel is
calculating with decimals the whole way even though the decimals do not show
in the appropriate columns. Is there a way to eliminate the decimals in the
calculations with the exception of the total. Excel's total and the "old"
calculator's do not match.
Example:
721 divided by 7.46 = 97, 97 minus 156 = (59), (59) multiplied by .3640 =
(21.47) on the calculator and (21.62) on excel.
Can someone help me,
Thanks, Patti
 
G

Guest

Use the ROUND() function

=ROUND(721/7.46,0) will give you 97
=ROUND(-59*.364,2) will give you 21.48

You're not going to get 21.47 unless you truncate

=TRUNC(-59*.364,2) will give you 21.47
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top