Number of Saturdays between given two dates

I need a formula to calculate number of saturdays between two dates.

Please advise.

Solved Solved
0 3 365
1 ACCEPTED SOLUTION

There are many ways to count it. But if you think through the logic, you could write it like..
HOUR(
EOWEEK([EndDate])-EOWEEK([StartDate])
)
/24
/7
+
IFS(WEEKDAY([EndDate)=7,1)

View solution in original post

3 REPLIES 3

There are many ways to count it. But if you think through the logic, you could write it like..
HOUR(
EOWEEK([EndDate])-EOWEEK([StartDate])
)
/24
/7
+
IFS(WEEKDAY([EndDate)=7,1)

Thanks @AleksiAlkio . This works.

Good to hear!

Top Labels in this Space