Duplicate Rows with certain end date needs to show all rows, HELP

mragans23

New Member
Joined
Apr 3, 2020
Messages
2
Office Version
  1. 365
Platform
  1. MacOS
  2. Web
I have an excel report that I need to create a new formula for and I am not sure it can happen.
I need a row to show
IF employeeid(row d) has multiple rows and one of those rows has an end date of 60 days from today, mark all rows as Review.

so for more information on this:
We have thousands of employees and some have one funding row with a 01/01/9999 end date and those do not need to be reviewed.
While we have some with multiples rows (could be 3 rows or 6 rows) and these people can also have one of their multiple funding row with an end date of 01/01/9999. but their other rows is what I am concerned with. IF one of their other rows shows an end date within the next 60 days, I need ALL of their rows (including the 01/01/9999 row) to pull in.
For example:
Employee NameEmployeeIDFunding Begin DateFunding End DateReview
Bob Thorp1234512/10/1905/15/20Review
Bob Thorp1234512/10/1905/15/20Review
Bob Thorp123455/15/2001/01/9999and I need this one to show review as well
Tim Heart9911212/01/1909/20/20NONE of these should show Review
Tim Heart9911212/01/1909/20/20NONE of these should show Review
Tim Heart9911209/21/2001/01/9999NONE of these should show Review
Mary Porter3344107/01/1901/01/9999This one should not show

HELP :)

Thank You,
 

Excel Facts

What is the shortcut key for Format Selection?
Ctrl+1 (the number one) will open the Format dialog for whatever is selected.
Hi & welcome to MrExcel.
How about
=IF(COUNTIFS($A$2:$A$8,A2,$D$2:$D$8,"<"&TODAY()+60)>0, "Review","")
 
Upvote 0
You're welcome & thanks for the feedback
 
Upvote 0

Forum statistics

Threads
1,215,007
Messages
6,122,670
Members
449,091
Latest member
peppernaut

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