Date.IsInNextDay
Date.IsInNextDay(dateTime as any) as nullable logical
Indicates whether the given datetime value dateTime occurs during the next day, as determined by the current date and time on the system.
dateTime: Adate,datetime, ordatetimezonevalue to be evaluated.
Determine if the day after the current system time is in the next day.
Date.IsInNextDay(Date.AddDays(DateTime.FixedLocalNow(), 1))
true
Show: