Formula using "except"

scottywalker

New Member
Joined
Feb 10, 2014
Messages
18
Ok

I have a confidential spreadsheet which is covered in formula so let me explain my problem

In A1 I have current jobs
In B1 I have employee on that task
In C1 I have work stage E.G. Active, Complete ETC
In D1 I have target completion date

The formula I am using is IF(B1="Naomi",If(D1<TODAY(),"Over","Under"),"")

So if the target implementation date was before today, it would come up as over target.

But i need this to take into account whether "C1" is complete. So if C1 was complete it would leave it blank

It needs to be a formula over a VBA

Any ideas

Cheers
 

Excel Facts

Formula for Yesterday
Name Manager, New Name. Yesterday =TODAY()-1. OK. Then, use =YESTERDAY in any cell. Tomorrow could be =TODAY()+1.
Try

Code:
=IF(C1="Complete","",IF(B1="Naomi",IF(D1<today(),"over","under"),""))

Is the name reference supposed to be static on Naomi?</today(),"over","under"),""))
 
Upvote 0

Forum statistics

Threads
1,215,418
Messages
6,124,793
Members
449,189
Latest member
kristinh

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