R Ron Feb 12, 2004 #1 How do I specify a range of numbers in excel formula I tried 12:56 but since I am not specifing cells.
How do I specify a range of numbers in excel formula I tried 12:56 but since I am not specifing cells.
V Vasant Nanavati Feb 12, 2004 #3 A little more detail would help. Why would you want a range of numbers in an Excel formula?
R Ron Feb 12, 2004 #4 Vasant Nanavati said: A little more detail would help. Why would you want a range of numbers in an Excel formula? Click to expand... This is the actual formula I have been try to work =IF(C65=2501:5000,0.02441,0)
Vasant Nanavati said: A little more detail would help. Why would you want a range of numbers in an Excel formula? Click to expand... This is the actual formula I have been try to work =IF(C65=2501:5000,0.02441,0)
V Vasant Nanavati Feb 13, 2004 #5 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 Click to expand... =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 Click to expand... =IF(C65=2501:5000,0.02441,0)