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

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
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,628
Messages
6,120,618
Members
448,973
Latest member
ChristineC

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