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

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
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,213,497
Messages
6,113,998
Members
448,541
Latest member
iparraguirre89

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