Forum Discussion
ajl_ahmed
Aug 05, 2024Iron Contributor
Selecting the three dates after specific date
Hi I want to select the first three dates after the specific date. Is there formula do that? see the attached file Thx.
Patrick2788
Aug 05, 2024Silver Contributor
Another variant into the hopper:
=LET(
filtered, SORT(FILTER(ListA, ListA > F5, "none"), , -1),
TAKE(filtered, -3)
)