Create a list of dates with blanks between quarters in excel
Question: How do I create a list of dates with blanks between each quarter? (Q1, Q2, Q3 and Q4)
Answer:
Formula in A2:
=DATE(2009,9,30)
Array formula in A3:
=IF(A2="", DATE(YEAR(A1), MONTH(A1)+2, 1)-1, IF((MONTH(A2)/3)-ROUND((MONTH(A2)/3), 0)=0, "", DATE(YEAR(A2), MONTH(A2)+2, 1)-1)) copied down as far as necessary.
Download excel sample file for this tutorial.
Create a list of dates with blanks between quarters.xls
(Excel 2007 Workbook *.xlsx)
Functions in this article:
IF(logical_test;[value_if:true];[value_if_false])
Checks whether a condition is met, and returns one value if TRUE, and another value if FALSE
ROUND(number, num_digits)
Rounds a number to a specified number of digits
DATE(year,month,day) returns the number that represents the datein Microsoft Office Excel date-time code
MONTH(serial_number) returns the month, a number from 1 (January) to 12 (December)
YEAR(serial_number) returns the year of a date, an integer of the range 1900-9999
Related posts:
- Create a custom date range in excel
- Create a quartely date range in excel
- Extract dates using a drop down list in excel
- Create a monthly date range in excel
- Create a unique distinct list of a long list without sacrificing performance using vba in excel
- Create a date range using excel formula
- Extract a unique distinct list sorted alphabetically removing blanks from a range in excel
- Extract dates and adjacent value in a range using a date critera in excel
- Determine the sum between a range of dates for a specific currency
- Create a dynamic stock chart using a web query and a drop down list in excel


September 15th, 2009 at 2:24 pm
The question of exactly *why* you would want blank rows in your data remains unanswered.
September 15th, 2009 at 9:18 pm
I guess it would increase sheet readability in large lists.
I just try to solve peoples excel questions. If the solutions seem useful I post them here.