IF statement

TracyinNOLA

New Member
Joined
Aug 2, 2010
Messages
3
Hi, I'm having a challenge creating an IF statement that responds the way I would like.

I've worked out the first part, it looks like this:
=IF(OR(B3="Vacant Lot", B3="Slab/Flatworks"), "Declined", " ")

In that same statement I want to add another option, but here I run into problems.

1. If L3 has a date in it (eg: 3/3/2010) then M3="Evaluated". The problem is that I will be using this formula in multiple rows with different dates.

2. I want to combine the first IF statement with this one:
=IF(L3=(has a date in it), "Evaluated", " ")

3. Rather than have a blank in it, if L3 has a date in it I want M3 to read "Evaluated", not "Declined" or " ".

Any suggestions would be greatly appreciated.
 

Excel Facts

Get help while writing formula
Click the italics "fx" icon to the left of the formula bar to open the Functions Arguments dialog. Help is displayed for each argument.
This doesn't check if L3 has a "date" but rather it checks if L3 is empty or not. Does that work for you?

Code:
=IF(NOT(ISBLANK(L3)),"Evaluated", IF(OR(B3="Vacant Lot", B3="Slab/Flatworks"), "Declined", " "))
 
Upvote 0
Hi, I'm having a challenge creating an IF statement that responds the way I would like.

I've worked out the first part, it looks like this:
=IF(OR(B3="Vacant Lot", B3="Slab/Flatworks"), "Declined", " ")

In that same statement I want to add another option, but here I run into problems.

1. If L3 has a date in it (eg: 3/3/2010) then M3="Evaluated". The problem is that I will be using this formula in multiple rows with different dates.

2. I want to combine the first IF statement with this one:
=IF(L3=(has a date in it), "Evaluated", " ")



3. Rather than have a blank in it, if L3 has a date in it I want M3 to read "Evaluated", not "Declined" or " ".

Any suggestions would be greatly appreciated.

Hi TracyinNOLA

Try this:

=if(L3<>"","EVALUATED","")
 
Upvote 0

Forum statistics

Threads
1,214,983
Messages
6,122,598
Members
449,089
Latest member
Motoracer88

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top