How to retrieve a text values by filtering dates

How to retrieve a text values by filtering dates

I have a spreadsheet with contents (number 6) and respective review dates in three columns (numbers 1, 2 and 3).

I would like to select a day (number 4) and Excel to retrieve all content to be reviewed that day (number 5), in the orange cells.enter image description here

答案1

Add a column called Include to your table of data. Use this formula:

=OR(H3:J3=$C$3)

This will show TRUE if any of the dates in that row matches your filter date.

Then use this formula to filter the content labels:

=UNIQUE(FILTER(G3:G11,K3:K11))

This just says filter column G for any row that has a TRUE in column K. It's wrapped in UNIQUE to make sure we don't see the same label twice in the case of more than one review of the same content on the same day.

enter image description here

相关内容