Need a calculation formula

calmedic21

New Member
Joined
Aug 7, 2010
Messages
16
Here is the info on what I need help on.<?xml:namespace prefix = o ns = "urn:schemas-microsoft-com:eek:ffice:eek:ffice" /><o:p></o:p>
<o:p> </o:p>
A16 = List Price<o:p></o:p>
B16 = List Price +$105.00<o:p></o:p>
C16 = Total of B16 * .42<o:p></o:p>
D16 = Total of B16 * .46<o:p></o:p>
E16 = Total of B16 * .50<o:p></o:p>
<o:p> </o:p>
The only thing is I need cells B16 - E16 to read $0.00 if there is nothing in Cell A16.

Thanks Guys!
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
Since A16 will be a number, for B16 you can use,
Code:
=If(A16,A16+105.00,"")
For C16, use
Code:
=If(A16,B16*.42,"")
Similar for D:E

lenze
 
Upvote 0
Hello Lenze....

Thank you for the formula. It works but when I delete the List Price, all the other cells go blank as well. Is there a way to show $0.00 when A16 is empty?

Thanks
 
Upvote 0

Forum statistics

Threads
1,215,633
Messages
6,125,928
Members
449,274
Latest member
mrcsbenson

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