Get next scheduled event
The first part of the solution uses the MIN and TODAY functions to find the "next date" based on the date today. This is done by filtering the dates through the IF function:
IF((date>=TODAY()),date)
The logical test generates an array of...Read more