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)
User | Count |
---|---|
15 | |
14 | |
8 | |
7 | |
4 |