Sum to include sum and also comment

portcity05

New Member
Joined
Jun 2, 2009
Messages
10
Hi
I am having trouble with a formula to express a freight cost in the example below under freight.
If the part has a online price as in lines one & two, it needs to read
"FREE" in line one or $49.95 as in line two.
If the part does not have a online price, it needs to read
"ADD" as in line three.

Below is my sum, it leaves $0.00 instead of "FREE" as in line one, this one is beyond my capability.
=IF(C64>1,D64,IF(C64<1,"ADD"))

Hopping someone can help! regards Terry

PART NOPRICE-F incOnline priceOnline FreightOnline totalLowestFreight

<tbody>
</tbody>
EKH355-HP1-57FX2420.222000002000.00$0.00
EKH355-HP1-57X1962.66179549.951844.951795.00$49.95
EKH355-HP1-602720.570002720.57ADD

<colgroup><col><col><col span="3"><col><col></colgroup><tbody>
</tbody>
 

Excel Facts

Whats the difference between CONCAT and CONCATENATE?
The newer CONCAT function can reference a range of cells. =CONCATENATE(A1,A2,A3,A4,A5) becomes =CONCAT(A1:A5)
Is this what you require



Excel 2007
ABCDEFG
1PART NOPRICE-F incOnline priceOnline FreightOnline totalLowestFreight
2
3EKH355-HP1-57FX2420.222000002000FREE
4EKH355-HP1-57X1962.66179549.951844.95179549.95
5EKH355-HP1-602720.570002720.57ADD
Sheet2
Cell Formulas
RangeFormula
G3=IF(AND(C3>0,D3=0),"FREE",IF(D3>0,D3,"ADD"))
G4=IF(AND(C4>0,D4=0),"FREE",IF(D4>0,D4,"ADD"))
G5=IF(AND(C5>0,D5=0),"FREE",IF(D5>0,D5,"ADD"))
 
Upvote 0
Thanks Michael
Perfect, your help is very much appreciated, I was never going to get the answer you came up with.
regards Terry
 
Upvote 0

Forum statistics

Threads
1,214,925
Messages
6,122,303
Members
449,078
Latest member
nonnakkong

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