This post will guide you how to calculate remaining days in a given month or year in Excel. How do I calculate the number of days left in a month or year using a formula in Excel 2013/2016.
Calculate Remaining Days in a Month
Assuming that you have a list of data in range B1:B4, in which contain date values, and you want to calculate the remaining days in the current month or year, how to accomplish it. You can use a formula based on the EOMONTH function. like this:
=EOMONTH(B1,0)-B1
Type this formula into a blank cell and press Enter key on your keyboard, and you drag the AutoFill Handle down to ther cells to apply this formula.

And keep to select the result, and then right click on the selected cells, and select Format Cells from the context menu list, and click Number tab, select General category from the left Category list, and click Ok button. You would see that the remaining days in this month is calculated.



Calculate Remaining Days in a Year
If you want to calculate the remaining days in the given year, you can use another formula based on the DATE function, and the Year function. like this:
=DATE(YEAR(A2),12,31)-A2
Type this formula into a blank cell and press Enter key on your keyboard, and drag the Autofill Handle over to other cells.

Related Functions
-
Excel DATE function
The Excel DATE function returns the serial number for a date.The syntax of the DATE function is as below:= DATE (year, month, day)…
-
Excel YEAR function
The Excel YEAR function returns a four-digit year from a given date value, the year is returned as an integer ranging from 1900 to 9999. The syntax of the YEAR function is as below:=YEAR (serial_number)…
Related Posts
Add Months To Date In Excel
It is important to adjust time periods when performing financial modeling. In Excel, you can use the MONTH function to add a specific number of months to a date. The MONTH function takes one argument: the number of months you ...
Add Days to Date in MS Excel
If you are an vavid MS Excel user, then you might have come across situations where you need to add the same or different days into the particular date, and if you have done this task manually, then let me ...
Filter Data By Date Field
The use of Microsoft Excel's Format Cells and Auto Filter option is a great way to filter data by year or Month. This article will discuss how to filter by date field using Filter function and Format cells in Microsoft ...
How to Count Dates of Given Year in Excel
This post will guide you how to count Dates of a certain year in the range of dates using a formula in Excel 2013/2016 or Excel office 365. How do I count dates by a given year in Excel. And ...
How to Sum Values Based on Month and Year in Excel
We often do some summary or statistic at the end of one month or one year. In these summary tables, there are at least two columns, one column records the date, and the other column records the sales or product ...
How to Convert Date & Time Format to Date in Excel
Sometimes we want to convert date and time format to date only format in excel for example convert 01/29/2019 06:51:03 to 01/29/2019, we can convert format by Formula or Format Settings. The two ways are easy to learn, so you ...
How to Extract Year from Date & Time Format in Excel
Sometimes we want to get Year information from date and time format to show the Year only in excel. For example convert 01/29/2019 06:51:03 to 2019, we can get Year information by Formula or Format Settings. The two ways are ...