Date.IsInNextNQuarters
Date.IsInNextNQuarters(dateTime as any, quarters as number) as nullable logical
Indicates whether the given datetime value dateTime occurs during the next number of quarters, as determined by the current date and time on the system.
dateTime: Adate,datetime, ordatetimezonevalue to be evaluated.quarters: The number of quarters.
Determine if the quarter after the current system time is in the next two quarters.
Date.IsInNextNQuarters(Date.AddQuarters(DateTime.FixedLocalNow(), 1), 2)
true
Show: