BlahQz
New Member
- Joined
- Nov 2, 2024
- Messages
- 8
- Office Version
- 365
- Platform
- Windows
I have a block of data with 2 columns. One for names, and another for dates. In the Names column, there are 5 unique names but have multiple entries (User1 - User5) and beside each is a corresponding date.
What I've done so far is create a formula in cell E19 that will show the unique names in the list that have dates 3 days ago (excluding weekends). For example today is Dec 9th, so 3 days ago (including today's date) is actually Dec 5th. My goal is to have a formula that shows the unique name as well as the number of times it fits the criteria of the formula I made.
Apologies for having to upload a screenshot, the Xl2bb addin didn't work for me maybe due to restrictions on my machine, not sure.
Formula in cell E19:
=TEXTJOIN(", ",TRUE,(SORT(UNIQUE(IF(INT(B2:B16)<=WORKDAY.INTL(TODAY(),-2,"0000011"),A2:A16,"")))))
*The answers part in the screenshot is just for reference
What I've done so far is create a formula in cell E19 that will show the unique names in the list that have dates 3 days ago (excluding weekends). For example today is Dec 9th, so 3 days ago (including today's date) is actually Dec 5th. My goal is to have a formula that shows the unique name as well as the number of times it fits the criteria of the formula I made.
Apologies for having to upload a screenshot, the Xl2bb addin didn't work for me maybe due to restrictions on my machine, not sure.
Formula in cell E19:
=TEXTJOIN(", ",TRUE,(SORT(UNIQUE(IF(INT(B2:B16)<=WORKDAY.INTL(TODAY(),-2,"0000011"),A2:A16,"")))))
*The answers part in the screenshot is just for reference