Everything 1.5.0.1384a changes WEEKDAY() to match the return values from Excel.
To find date modified on the first Sunday:
To find date modified on the second Sunday:
DATE() now returns an Excel date serial number.
To find date modified after 2018-01-01, or before the 1st Sunday of March 2018
To find date modified on the first Sunday:
WEEKDAY($dm:)-1+(((DAY($dm:)-1)/7)*7)==0
To find date modified on the second Sunday:
WEEKDAY($dm:)-1+(((DAY($dm:)-1)/7)*7)==7
DATE() now returns an Excel date serial number.
To find date modified after 2018-01-01, or before the 1st Sunday of March 2018
dm:>=2018-01-01 DATEVALUE($dm:)<DATE(2018,3,1)-1+(8-WEEKDAY(DATE(2018,3,1)-1))
Statistics: Posted by void — Fri Nov 29, 2024 10:17 am