Excel: Calculate last date of a specific month
Question: Calculate the last day of a month?
Answer: We need a starting date, in this case 2007-01-01. To calculate the last day of the starting month we use this formula: =DATE(YEAR(A2),MONTH(A2)+1,0).
So a zero in DATE(year,month,0) returns the last day in the previous month, that is the trick!
YEAR(serial_number) returns the year of a date, an integer of the range 1900-9999
MONTH(serial_number) returns the month, a number from 1 (January) to 12 (December
DATE(year,month,day) returns the number that represents the datein Microsoft Office Excel date-time code

Related posts:
How to automatically calculate a specific day of a month
Highlight duplicates on same date, week or month using conditional formatting in excel
Filter duplicates within same date, week or month in excel
How to calculate missing months in a given date range in excel
Excel: How to automatically summarize preceding month and year
















