Trying to create a formula to check for due assignments

htay44

New Member
Joined
Jan 21, 2022
Messages
1
Office Version
  1. 365
Platform
  1. Windows
Hi!

I wondered what formula I could use to solve whether I have something due. I was looking for it to check if the date has passed in column B, and if column E says either "in progress" or "not started". If both of these conditions were met, column G would say "due", otherwise it would just be blank.

Any help would be greatly appreciated! Thanks!
 

Attachments

  • Screenshot 2022-01-21 222646.png
    Screenshot 2022-01-21 222646.png
    35.2 KB · Views: 4

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
Welcome to the MrExcel board!

For the future: MrExcel has a tool called “XL2BB” that lets you post samples of your data that will allow us to copy/paste it to our Excel spreadsheets, so we can work with the same copy of data that you are. Instructions on using this tool can be found here: XL2BB Add-in

Note that there is also a "Test Here” forum on this board. This is a place where you can test using this tool (or any other posting techniques that you want to test) before trying to use those tools in your actual posts.

See if this, in G3 and copied down works for you

Excel Formula:
=IF(AND(B3<TODAY(),OR(E3={"in progress","not started"})),"due","")
 
Upvote 0
Solution
Hi,

Like this?

Book3.xlsx
BCDEFG
31/10/2022Completed 
41/10/2022Completed 
51/10/2022In ProgressDue
61/10/2022Completed 
71/11/2022Completed 
81/11/2022Completed 
91/12/2022Not StartedDue
Sheet952
Cell Formulas
RangeFormula
G3:G9G3=IF(AND(B3<TODAY(),E3<>"Completed"),"Due","")
 
Upvote 0

Forum statistics

Threads
1,214,834
Messages
6,121,876
Members
449,056
Latest member
ruhulaminappu

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