ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Simple If-Then Formula (https://www.excelbanter.com/excel-discussion-misc-queries/50858-simple-if-then-formula.html)

InsBrokerJayne

Simple If-Then Formula
 
I am trying to set up a simple if-then formula. I want three possible
outcomes.

Here's the deal:
I want a formula that will do the following:
If F2 is greater than $50.00 but less than $500.00, the value for G2 should
be $25.00.
If F2 is greater than or equal to $500.00, the value for G2 should be
$50.00.
If F2 is less than $50.00, the value for G2 should be 0.

Please help.

CLR

Simple If-Then Formula
 
IN G2, put..........

=IF(F2<50,0,IF(F2<500,25,50))

Vaya con Dios,
Chuck, CABGx3



"InsBrokerJayne" wrote:

I am trying to set up a simple if-then formula. I want three possible
outcomes.

Here's the deal:
I want a formula that will do the following:
If F2 is greater than $50.00 but less than $500.00, the value for G2 should
be $25.00.
If F2 is greater than or equal to $500.00, the value for G2 should be
$50.00.
If F2 is less than $50.00, the value for G2 should be 0.

Please help.


Anne Troy

Simple If-Then Formula
 
Try this, Jayne:
=IF(AND(F250,F2<500),25,IF(F2=500,50,0))
************
Anne Troy
www.OfficeArticles.com

"InsBrokerJayne" wrote in message
...
I am trying to set up a simple if-then formula. I want three possible
outcomes.

Here's the deal:
I want a formula that will do the following:
If F2 is greater than $50.00 but less than $500.00, the value for G2
should
be $25.00.
If F2 is greater than or equal to $500.00, the value for G2 should be
$50.00.
If F2 is less than $50.00, the value for G2 should be 0.

Please help.




Eric

Simple If-Then Formula
 
=IF(F2=500,50,IF(F250,25,0))

What if F2=50?

Eric.


"InsBrokerJayne" wrote in message
...
I am trying to set up a simple if-then formula. I want three possible
outcomes.

Here's the deal:
I want a formula that will do the following:
If F2 is greater than $50.00 but less than $500.00, the value for G2

should
be $25.00.
If F2 is greater than or equal to $500.00, the value for G2 should be
$50.00.
If F2 is less than $50.00, the value for G2 should be 0.

Please help.




JE McGimpsey

Simple If-Then Formula
 
Just another way:

=((F250)+(F2=500))*25

You don't say what should happen if F2=50, so I assumed the result
should be zero.


In article ,
"InsBrokerJayne" wrote:

I am trying to set up a simple if-then formula. I want three possible
outcomes.

Here's the deal:
I want a formula that will do the following:
If F2 is greater than $50.00 but less than $500.00, the value for G2 should
be $25.00.
If F2 is greater than or equal to $500.00, the value for G2 should be
$50.00.
If F2 is less than $50.00, the value for G2 should be 0.

Please help.


RagDyer

Simple If-Then Formula
 
This returns 25 if F2 also = 50:

=AND(F2=50,F2<500)*25+(F2=500)*50

--
HTH,

RD
==============================================
Please keep all correspondence within the Group, so all may benefit!
==============================================


"InsBrokerJayne" wrote in message
...
I am trying to set up a simple if-then formula. I want three possible
outcomes.

Here's the deal:
I want a formula that will do the following:
If F2 is greater than $50.00 but less than $500.00, the value for G2

should
be $25.00.
If F2 is greater than or equal to $500.00, the value for G2 should be
$50.00.
If F2 is less than $50.00, the value for G2 should be 0.

Please help.



Sandy Mann

Simple If-Then Formula
 
=IF(F2<"",(F2=50)*25+(F2=500)*25,"")

--
HTH

Sandy

Replace@mailinator with @tiscali.co.uk


"InsBrokerJayne" wrote in message
...
I am trying to set up a simple if-then formula. I want three possible
outcomes.

Here's the deal:
I want a formula that will do the following:
If F2 is greater than $50.00 but less than $500.00, the value for G2
should
be $25.00.
If F2 is greater than or equal to $500.00, the value for G2 should be
$50.00.
If F2 is less than $50.00, the value for G2 should be 0.

Please help.




InsBrokerJayne

Simple If-Then Formula
 
Thank you everyone! I really appreciate your help!
-Jayne



All times are GMT +1. The time now is 03:10 AM.

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