Help with nesting IF statements

mesteptoe

Board Regular
Joined
Aug 22, 2008
Messages
105
I am working on a project calendar, i.e Weeks v. tasks

As a task is started I want to get the cell relevant to that task and that week to show "Y" and turn RED. I am using the following statement in each cell to do that,
=IF(AND(G8>=$E$21,G8<=$F$21),"Y","") where G8 is the current date, E21 is the date the task starts and F21 the finish date for the task. Now this works fine as long as a finish date for the task (F21) has been entered. Once the date (G8) exceeds the task completion date (F21), the cell is left blank as it should be.
But if the task has started, i.e. E21>0, but not completed, i.e. F21=0 the schedule is left completely blank - as expected. But I need to show RED coloured cells to show the task is in progress.
Somehow I need to link another formula to the
=IF(AND(G8>=$E$21,G8<=$F$21),"Y","")
i.e. =IF(AND(G8>=$E$21,$F$21=0),"Y","") such that two sets of criteria are checked out. Is it possible to link the two statements together with an OR statement? If so, how do I do that?

Thanks for your help.

Regards

Graham
 
Well that's correct because it's impossible to be undertaking a task at a date beyond the current date
 
Upvote 0

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"

Forum statistics

Threads
1,215,419
Messages
6,124,798
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