Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am trying to create a variable which shows the number of working days in a previous week
This shows a working days in a current week.
Let Netwrkngdaysinaweek=NetWorkDays(Floor(WeekStart(Today())),Today());
shall i get something similar to this for the previous week?
or this for only the last week:
=NetWorkDays(WeekStart(Today(),-1),WeekEnd(Today(),-1))
Hi,
try this:
Let Netwrkngdaysinaweek=NetWorkDays(Floor(WeekStart(Today(),-1)),Today());
or this for only the last week:
=NetWorkDays(WeekStart(Today(),-1),WeekEnd(Today(),-1))