Formula Help

  • Thread starter Thread starter heater
  • Start date Start date
H

heater

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
 
maybe...
=IF((C8-C9)*0.04>350000,75000,IF((C8-C9)*0.01<25000,25000,(C8-C9)*0.01))
 
The place to find the syntax of the IF function (and every other Excel
function except for DATEDIF) is in Excel help.
 
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
 

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

Back
Top