How to Calculate Remaining Days in Excel (5 Methods)

While working on a project in Excel that has a deadline to meet, you might want to find out how many days from today are left until the deadline. You might also need to find out how many days or workdays are left in a month or a year. In this tutorial, I will show you how to calculate the remaining days in Excel very easily.


How to Calculate Remaining Days in Excel: 5 Methods

Let’s assume a scenario where we have an Excel file that contains information on the Start Date and End Date of different projects. We will use this worksheet to calculate the remaining days in Excel. The image below shows the worksheet we are going to work with.

How to Calculate Remaining Days In Excel


1. Calculate the Remaining Days Using the Subtraction

We can simply use the subtraction method to calculate the remaining days in Excel.

Steps:

  • We will write down the below formula in cell D5.
=MAX(0,C5-TODAY())

Formula Breakdown:

  • The TODAY function will return the date of the present day. The arithmetic expression C5-TODAY() will subtract the end date of the project (C5) from the date of the present day.
  • The MAX function will return the subtracted value if it is positive. If the date of the present day exceeds the end date means the deadline of the project is over, then the MAX function will return zero (0) instead of a negative value.

Calculate Remaining Days Using the Subtraction

  • Upon pressing ENTER, we will see that the subtracted value has been returned in Date format as the two values involved in subtraction are in Date format.

Calculate Remaining Days Using the Subtraction

  • We will change the Number format to General to get a numeric value. It will indicate how many days from the present day are left until the deadline of the project.

Calculate Remaining Days Using the Subtraction

  • After changing the Number type to General, we will get the remaining days of the project.

Calculate Remaining Days Using the Subtraction

  • Now, we will drag the fill handle of cell D5 to apply the formula to the rest of the cells.

drag the fill handle

  • Finally, we will get the remaining days for all of the projects.

Calculate Remaining Days Using the Subtraction

Read More: Excel Calculates Difference Between Two Dates in Days


2. Apply the DAYS Function in Excel to Calculate Remaining Days Between Two Dates

Alternatively, we can also use the DAYS function function in Excel to calculate the remaining days.

Steps:

  • We will write down the below formula in cell D5.
=DAYS(C5,TODAY())

Formula Breakdown:

  • TODAY function will return the date of the present day.
  • DAYS function will subtract the end date of the project (C5) from the date of the present day.

DAYS Function in Excel

Note: Like the first method, if you want the DAYS function to return zero (0) instead of a negative value, you have to replace the existing formula with the one below.

=MAX(0,DAYS(C5,TODAY()))

  • Upon pressing ENTER, we will see that the subtracted value has been returned in Date format as the two values involved in subtraction are in Date format.
  • Like the first method above, we will change the Number format to General. So that we will get a numeric value that will indicate how many days from the present day are left until the deadline of the project.

Apply the DAYS Function in Excel to Calculate Remaining Days Between Two Dates

  • Now, we will drag the fill handle of cell D5 to apply the formula to the rest of the cells.

drag the fill handle

  • Finally, we will get the remaining days for all of the projects.

Apply the DAYS Function in Excel to Calculate Remaining Days Between Two Dates

Read More: Excel Formula to Calculate Number of Days Between Today and Another Date


3. Calculate Remaining Days in a Month Using the EOMONTH Function in Excel

We can also calculate the remaining days in a month using the EOMONTH function in Excel. We have to follow the below steps.

Steps:

  • We will write down the below formula in cell D5.
=EOMONTH(C5,0)-C5

Formula Breakdown:

  • EOMONTH function will return the last date of the month of cell C5.
  • Then the last date of the month will be subtracted from the End Date (C5) to determine how many days will be left in that month following the deadline of the project.

EOMONTH Function in Excel

  • Upon pressing ENTER, we will get the subtracted value in Date format as the two values involved in subtraction are in Date format.
  • Like the methods above, we will change the Number format to General. So we will get a numeric value that will indicate how many days are left in that month after the deadline of the project.

Calculate Remaining Days in a Month Using the EOMONTH Function in Excel

  • Now, we will drag the fill handle of cell D5 to apply the formula to the rest of the cells.

Calculate Remaining Days in a Month Using the EOMONTH Function in Excel

  • Finally, we will get the remaining days in the month after the deadline of each project.

Calculate Remaining Days in a Month Using the EOMONTH Function in Excel

Read More: Calculate Number of Days Between Two Dates with VBA in Excel


4. Using the NETWORKDAYS Function to Calculate Remaining Work Days in a Month

We can also determine how many workdays are left in a month. For that, we just have to change the formula above a little bit to add a function called NETWORKDAYS with it.

Steps:

  • We will write down the below formula in cell D5.
=NETWORKDAYS(C5,EOMONTH(C5,0))

Formula Breakdown:

  • EOMONTH function will return the last date of the month of cell C5.
  • Then the last date of the month will be subtracted from the End Date (C5) to determine how many days will be left in that month following the deadline of the project.
  • Finally, the NETWORKDAYS function in Excel will determine how many workdays or weekdays are left in that month following the deadline of the project.

Using the NETWORKDAYS Function

  • Upon pressing ENTER, we will get the value in Date format as C5 contains the value in Date.
  • Following the methods above, we will change the Number format to General. We will get a numeric value that will indicate how many workdays or weekdays are left after the deadline of the project.

Using the NETWORKDAYS Function in to Calculate Remaining Work Days in a Month

  • Now, we will drag the fill handle of cell D5 to apply the formula to the rest of the cells.

Using the NETWORKDAYS Function in to Calculate Remaining Work Days in a Month

  • Finally, we will get the remaining workdays or weekdays in the month after the deadline of each project.

Using the NETWORKDAYS Function in to Calculate Remaining Work Days in a Month

Read More: How to Calculate Overdue Days in Excel


5. Combination of the DATE and YEAR Functions to Calculate Days Left in a Year

Alternatively, we can also use the combination of DATE and YEAR function to calculate the remaining days in a year.

Steps:

  • We will write down the below formula in cell D5.
=DATE(YEAR(C5),12,31)-C5

Formula Breakdown:

  • The YEAR function calculates a year number from a date and it returns a 4-digit year of the corresponding date.
  • The DATE function returns the date with the given year, month, and day. We have provided the DATE function with the 4-digit year of the corresponding date C5 as the year argument, 12 or December as the month argument, and 31 as the day. So the DATE function will return the date as December 31, 2022.
  • Finally, the formula will subtract the last date of the year which is December 31, 2022, from the End Date (C5) of the project to determine the remaining days in that year following the deadline of the project.

Combination of DATE and YEAR Functions

  • Upon pressing ENTER, we will get the value in Date format as the C5 contains the value in Date.
  • So, like the methods above, we will now change the Number format to General. We will get a numeric value that will return the number of remaining days in that year after the deadline of the project.

Combination of DATE and YEAR Functions to Calculate Days Left in a Year

  • Now, we will drag the fill handle of cell D5 to apply the formula to the rest of the cells.

drag the fill handle

  • Finally, we will get the remaining days in the year after the deadline of each project.

Combination of DATE and YEAR Functions to Calculate Days Left in a Year


Quick Notes

🎯 You have to change the number format to General format from Date format each you apply any of the formulas above.

🎯 Like the first method, if you want the DAYS function to return zero (0) instead of a negative value, you have to replace the existing formula with the one below.

=MAX(0,DAYS(C5,TODAY()))

Download Practice Workbook

Download this practice book to exercise the task while you are reading this article.


Conclusion

In this article, we have learned how to calculate the remaining days in Excel. I hope from now on you can calculate the remaining days in Excel very easily. However, if you have any queries or recommendations about this article, please leave a comment below. Have a great day!!!


Related Articles


<< Go Back to Days Between Dates | Calculate Dates | Date-Time in Excel | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
ASM Arman
ASM Arman

Abu Saleh Arman is a Marine engineer and Excel & VBA expert. He loves programming with VBA. He finds VBA programming a time-saving tool to manipulate data, handle files, and interact with the internet. He is very interested in Python, MATLAB, PHP, Deep Neural Networks, and Machine Learning, showcasing his diverse skill set. Arman holds a B.Sc in Naval Architecture & Marine Engineering from BUET, Bangladesh. However, he switched to a content developer, where he writes technical content... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo