specify a range of numbers in excel formula

  • Thread starter Thread starter Ron
  • Start date Start date
R

Ron

How do I specify a range of numbers in excel formula I tried 12:56 but
since I am not specifing cells.
 
A little more detail would help. Why would you want a range of numbers in an
Excel formula?
 
Vasant Nanavati said:
A little more detail would help. Why would you want a range of numbers in an
Excel formula?

This is the actual formula I have been try to work =IF(C65=2501:5000,0.02441,0)
 
Can't do that. Try:

=IF(AND(C65>=2501,C65<=5000),0.02441,0)

--

Vasant


Ron said:
"Vasant Nanavati" <vasantn *AT* aol *DOT* com> wrote in message

This is the actual formula I have been try to work
=IF(C65=2501:5000,0.02441,0)
 
Back
Top