ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   If Then formula - Should be easy!?! (https://www.excelbanter.com/excel-discussion-misc-queries/69223-if-then-formula-should-easy.html)

Aajaxx

If Then formula - Should be easy!?!
 

I want to do something that should be very easy, but its not working.
Perhaps you experts can help. =)

I would like to do the following:
IF F5 is greater than 3999 then 10,
IF F5 is less than 2500 then -10,
IF F5 is blank then blank

***A5 is the cell of course***

I've tried these two formulas but they keep coming back with -10 if the
cell is blank.

=IF((F53999),10,IF((F5<2500),-10,IF((F5=""),"","")

and

=IF(F53999),10, IF(F5<2500),-10,IF(F5=""),"","")))

Thank you, thank you, thank you-
Aajaxx


--
Aajaxx
------------------------------------------------------------------------
Aajaxx's Profile: http://www.excelforum.com/member.php...o&userid=31129
View this thread: http://www.excelforum.com/showthread...hreadid=507950


Dave Peterson

If Then formula - Should be easy!?!
 
What should happen between 2500 and 3999?

=IF(F5="","",IF(F5<2500,-10,IF(F53999,10,"whathappenshere")))

Aajaxx wrote:

I want to do something that should be very easy, but its not working.
Perhaps you experts can help. =)

I would like to do the following:
IF F5 is greater than 3999 then 10,
IF F5 is less than 2500 then -10,
IF F5 is blank then blank

***A5 is the cell of course***

I've tried these two formulas but they keep coming back with -10 if the
cell is blank.

=IF((F53999),10,IF((F5<2500),-10,IF((F5=""),"","")

and

=IF(F53999),10, IF(F5<2500),-10,IF(F5=""),"","")))

Thank you, thank you, thank you-
Aajaxx

--
Aajaxx
------------------------------------------------------------------------
Aajaxx's Profile: http://www.excelforum.com/member.php...o&userid=31129
View this thread: http://www.excelforum.com/showthread...hreadid=507950


--

Dave Peterson

Pete

If Then formula - Should be easy!?!
 
Try this variation:

=IF(F53999,10,IF(F5<2500,-10,IF(F5="","","none")))

I've added "none" to help you test it out - you can easily change back
to "" when you are satisfied that it works.

Hope this helps.

Pete


Fred Smith

If Then formula - Should be easy!?!
 
A blank is less than 2500, that's why you're getting the -10 result. Put the
test for blank first, as in:

=if(f5="","",if( ...

--
Regards,
Fred


"Aajaxx" wrote in message
...

I want to do something that should be very easy, but its not working.
Perhaps you experts can help. =)

I would like to do the following:
IF F5 is greater than 3999 then 10,
IF F5 is less than 2500 then -10,
IF F5 is blank then blank

***A5 is the cell of course***

I've tried these two formulas but they keep coming back with -10 if the
cell is blank.

=IF((F53999),10,IF((F5<2500),-10,IF((F5=""),"","")

and

=IF(F53999),10, IF(F5<2500),-10,IF(F5=""),"","")))

Thank you, thank you, thank you-
Aajaxx


--
Aajaxx
------------------------------------------------------------------------
Aajaxx's Profile:
http://www.excelforum.com/member.php...o&userid=31129
View this thread: http://www.excelforum.com/showthread...hreadid=507950




Aajaxx

If Then formula - Should be easy!?!
 

In between 2501 - 3999 the value is 0.

Good question, sometimes you forget the obvious.


--
Aajaxx
------------------------------------------------------------------------
Aajaxx's Profile: http://www.excelforum.com/member.php...o&userid=31129
View this thread: http://www.excelforum.com/showthread...hreadid=507950


Ron Rosenfeld

If Then formula - Should be easy!?!
 
On Thu, 2 Feb 2006 20:19:47 -0600, Aajaxx
wrote:


In between 2501 - 3999 the value is 0.

Good question, sometimes you forget the obvious.



=IF(F5="","",HLOOKUP(F5,{-1E+307,2500,4000;-10,0,10},2))


--ron

Dana DeLouis

If Then formula - Should be easy!?!
 
Perhaps another version if thought of as a signal pulse...

=IF(A1="","",10*((A13900)+(A1=2500)-1))

--
HTH. :)
Dana DeLouis
Windows XP, Office 2003


"Aajaxx" wrote in
message ...

In between 2501 - 3999 the value is 0.

Good question, sometimes you forget the obvious.


--
Aajaxx
------------------------------------------------------------------------
Aajaxx's Profile:
http://www.excelforum.com/member.php...o&userid=31129
View this thread: http://www.excelforum.com/showthread...hreadid=507950




Aajaxx

If Then formula - Should be easy!?!
 

This was presented to me and it works like a charm!

=IF(ISBLANK(F5),"",IF(F53999,10,IF(F5<2500,-10,0)))

Thanks everyone for your help. I really appreciated it.

AJ


--
Aajaxx
------------------------------------------------------------------------
Aajaxx's Profile: http://www.excelforum.com/member.php...o&userid=31129
View this thread: http://www.excelforum.com/showthread...hreadid=507950


pinmaster

If Then formula - Should be easy!?!
 
Try:

=IF(F5="","",IF(F53999,10,IF(F5<2500,-10,"")))

cell will be left blank if F5 is between 2500 and 3999

HTH
JG

"Aajaxx" wrote:


I want to do something that should be very easy, but its not working.
Perhaps you experts can help. =)

I would like to do the following:
IF F5 is greater than 3999 then 10,
IF F5 is less than 2500 then -10,
IF F5 is blank then blank

***A5 is the cell of course***

I've tried these two formulas but they keep coming back with -10 if the
cell is blank.

=IF((F53999),10,IF((F5<2500),-10,IF((F5=""),"","")

and

=IF(F53999),10, IF(F5<2500),-10,IF(F5=""),"","")))

Thank you, thank you, thank you-
Aajaxx


--
Aajaxx
------------------------------------------------------------------------
Aajaxx's Profile: http://www.excelforum.com/member.php...o&userid=31129
View this thread: http://www.excelforum.com/showthread...hreadid=507950



Aajaxx

If Then formula - Should be easy!?!
 

Thank you everyone for your help.

I got the formula that works perfect.

=IF(ISBLANK(F5),"",IF(F53999,10,IF(F5<2500,-10,0)))

The key was the ISBLANK.

The spreadsheet works perfect now.

Thanks again-
AJ


--
Aajaxx
------------------------------------------------------------------------
Aajaxx's Profile: http://www.excelforum.com/member.php...o&userid=31129
View this thread: http://www.excelforum.com/showthread...hreadid=507950



All times are GMT +1. The time now is 02:39 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com