H heater Oct 12, 2009 #1 I need a formula to do the following: If(c8-c9)*.04>350000,75000,if(c8-c9)*.01<25000,25000,if not then (c8-c9)*.01
I need a formula to do the following: If(c8-c9)*.04>350000,75000,if(c8-c9)*.01<25000,25000,if not then (c8-c9)*.01
D Dave Peterson Oct 12, 2009 #2 maybe... =IF((C8-C9)*0.04>350000,75000,IF((C8-C9)*0.01<25000,25000,(C8-C9)*0.01))
D David Biddulph Oct 12, 2009 #4 The place to find the syntax of the IF function (and every other Excel function except for DATEDIF) is in Excel help.
The place to find the syntax of the IF function (and every other Excel function except for DATEDIF) is in Excel help.
D Dana DeLouis Oct 16, 2009 #5 Hi. Just to be different. If 'X represents C8-C9, are you sure there is a discontinuous jump when this value is 8,750,000 ? =IF(X<2500000,25000,IF(X>8750000,75000,X/100)) Dana DeLouis
Hi. Just to be different. If 'X represents C8-C9, are you sure there is a discontinuous jump when this value is 8,750,000 ? =IF(X<2500000,25000,IF(X>8750000,75000,X/100)) Dana DeLouis