Google-sheets – How to determine which working day of the month today is

google sheetsgoogle-sheets-dates

Using Google Sheets, I need to know what the numeric working day of today is. Somehow I'm just missing something here.
I can already easily determine the number of working days remaining, with

=NETWORKDAYS(today(),eomonth(today(),0)

but how do I figure out that today (October 1) for example, is day 1, Friday will be day 4, Monday will be day 5, etc.?

Best Answer

The general formula as you asked is:

=((NETWORKDAYS(today(),eomonth(today(),-1)))*-1)-1

Using fixed values for today "02/10/2019" for dates the above formula would be:

=NETWORKDAYS("30/09/2019","02/10/2019")

We use eomonth(today(),-1), so we take as our starting date the last day of the previous month.
We multiply the whole formula by -1 because we get a negative result.


Please have a go and try out the formula on this TEST spreadsheet