Summary

To show the amount of time completed in a year as a percentage value, based on any given date, you can use the YEARFRAC function together with the YEAR and DATE functions. In the example shown, the formula in C5, copied down, is:

=YEARFRAC(DATE(YEAR(B5),1,1),B5)

The results in column C are fractional values with the percentage number format applied. 

Generic formula

=YEARFRAC(DATE(YEAR(date),1,1),date)

Explanation 

The goal in this example is to return the amount of time completed in a year as a percentage value, based on any given date. In other words, when given the date July 1, 2021, the formula should return 50% since we are halfway* through the year.

*By default, the YEARFRAC function uses a 30/360 day convention, assuming a year contains twelve 30-day months = 360 days. This is controlled by an optional argument called "basis".

The core of the formula is the YEARFRAC function, which returns the fractional years between two dates as a decimal value. The formula in C5, copied down, is:

=YEARFRAC(DATE(YEAR(B5),1,1),B5)

YEARFRAC takes two dates: a start date and an end date:

=YEARFRAC(start, end)

We calculate the start date with the DATE function and YEAR function like this:

DATE(YEAR(B5),1,1) // returns first of year

The YEAR function extracts the year from the date in B5:

YEAR(B5) // returns 2021

The number is returned directly to the DATE function with the number "1" hard-coded for both month and day arguments:

=DATE(2021,1,1) // returns 1-Jan-2021

The end date is the date given in column B. With January 15, 2021 in B5, the formula is evaluated like this:

=YEARFRAC(DATE(YEAR(B5),1,1),B5)
=YEARFRAC(DATE(2021,1,1),B5)
=YEARFRAC(44197,44211)
=0.0388888888888889
=4%

Note: the large serial numbers in step 3 above are Excel dates in their raw format.

The YEARFRAC function returns the decimal value 0.0388888888888889. Then this value is formatted with the Percentage number format which displays as a percentage.

Current year and date

To return the percent of year completed based on the current year and current date, you can adjust the formula to use the TODAY function like this:

=YEARFRAC(DATE(YEAR(TODAY()),1,1),TODAY())

In this version, the TODAY function returns the current date which goes into YEARFRAC twice – once as the start date, and once as as the end date. Note the start date uses the DATE function to create a date for the first of the year, by hard-coding the number 1 for month and day, and extracting the current year with the YEAR function. The result is the percentage of the year completed through as of today. This percentage will continually update over time.

Percent of year remaining

To calculate the percent of year remaining instead of percent complete, you can adjust the formula to subtract the fractional year from "1". In the example shown, D5 contains this formula copied down:

=1-YEARFRAC(DATE(YEAR(B5),1,1),B5)

Formatting percentages in Excel

In mathematics, a percentage is a number expressed as a fraction of 100. For example, 35% is read as "thirty-five percent" and is equivalent to 35/100 or 0.35. Accordingly, the values in columns C and D are decimal values with the Percentage number format applied.

Dave Bruns Profile Picture

AuthorMicrosoft Most Valuable Professional Award

Dave Bruns

Hi - I'm Dave Bruns, and I run Exceljet with my wife, Lisa. Our goal is to help you work faster in Excel. We create short videos, and clear examples of formulas, functions, pivot tables, conditional formatting, and charts.