I need a formula to calculate number of saturdays between two dates.
Please advise.
Solved! Go to 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)
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!
User | Count |
---|---|
18 | |
14 | |
11 | |
7 | |
4 |