Problems with numbers rounding

Xleo389

New Member
Joined
Mar 3, 2015
Messages
3
I have created an invoice form that allows for 8 items to be entered on the invoice. My columns are numbered as follows:
A12 = Item Description
C12 = Price per item $1.70
E12 = Quantity of items 75
F12 = 7% Tax 7%
G12 = 5% Tax 5%
H12 = Total of F12*J12 $8.93 if not rounded figure would be 8.925
I 12 = Total of G12*J12 $6.38 if not rounded figure would be 6.375
J12 = C12 * E12 $127.50
K12 = H12+I12 $15.30
L12 = J12+K12 $142.80
My problem is the numbers reported in H12 & I12 are rounded to 2 decimal places. When the total is reported in K12 it uses 3 decimal places and my answer then is not correct.
How do I get K12 to report the correct answer of $15.31

Thanks in advance for any help.:)
 

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
Thank you.
H12 contains the following and I12 has a similar IF statement:
=IFERROR(IF((C12*E12)*F12=0,"",(C12*E12)*F12),"")
How and where would I add the ROUND function?
Thanks again.
 
Upvote 0
Try

Code:
 =IFERROR(IF((C12*E12)*F12=0,"",ROUND((C12*E12*F12),2)),"")
 
Upvote 0

Forum statistics

Threads
1,214,574
Messages
6,120,329
Members
448,956
Latest member
Adamsxl

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top