Forum Discussion
Liquidcircuits
Apr 17, 2025Copper Contributor
Filter Courses with multiple dates - 30/60/90 help!
I have a table with students that attend multiple courses.
The courses expires one year from the completion date.
I need to know which students have a course expiring in the next 30 60 and 90 days so they can recertify.
I would like to have two sheets one with the data in a table and another showing ONLY students with the courses they need to re-certify in.
2 Replies
Sort By
- m_tarlerBronze Contributor
I would actually recommend having a 3rd sheet that is just a running list of all the class completions. Having that historical information can be very useful and you could add other userful information if needed.
Date, Class, Name
Then you you can PINOTBY to create the table of the most recent (MAX) date for each person and each class.
=PIVOTBY(table[name], table[class], table[date], MAX,,0,,0)
And you can then further filter that table based on dates <EDATE(TODAY(),-9) but agree with HANS that conditional formatting would be easier.
Cross-posted at filter values to a different pageer-values-to-a-different-page/d0297e0f-49e2-44c9-a654-cd1793ac5fc9
See my reply there.