Day Number of the Year – Formula for Excel or Google Sheets

Download Example Workbook

Download the example workbook

This tutorial will demonstrate how to calculate a date’s day number of the year or find the nth day of the year in Excel and Google Sheets.

mf day number of year

 

Date’s Day Number of the Year

To calculate a date’s day number of the year you can calculate the difference between the date and the first day of the year:

=B3-DATE(YEAR(B3),1,1)+1

Day Year to date

Notice we need to add 1 to the end of the formula to calculate the correct day number. Instead we can set the day to 0 in the Date Function:

=B3-DATE(YEAR(B3),1,0)

Year to date Day0

nth Day of the Year

Conversely you can calculate the nth day of the year by adding n days to 12/31 of the previous year:

=DATE(2020,1,0)+C3

Nth Day of the Year

Notice we do this by once again setting day =0 in the Date Function.

Today’s Day Number

Use the TODAY Function to calculate today’s day number:

= TODAY() - DATE(YEAR(TODAY()),1,0)

Today's Day Number

Google Sheets – Day Number Of The Year

All of the above examples work exactly the same in Google Sheets as in Excel.
Day-Number of year Google Sheet