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

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
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,119
Messages
6,123,172
Members
449,094
Latest member
bes000

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