johnbrownbaby
New Member
- Joined
- Dec 9, 2015
- Messages
- 38
Hello,
I am trying to get a continuous running tally of days that does not include weekends. I used a formula to check if the date is a weekend, if true, return 0, else, add 1:
I am able to get the weekend as 0. However, the tally reverts back to 1 after the weekend. Can you help me continue to tally the days even after a weekend?
Thanks.
I am trying to get a continuous running tally of days that does not include weekends. I used a formula to check if the date is a weekend, if true, return 0, else, add 1:
Code:
=IF(WEEKDAY(L5,2)>5,0,L7+1)
I am able to get the weekend as 0. However, the tally reverts back to 1 after the weekend. Can you help me continue to tally the days even after a weekend?
Thanks.