Creating a list of only values from column with blank cells

cannelen

New Member
Joined
Apr 1, 2014
Messages
2
I'm looking to dynamically create a consolidated list from a column of data that has blank rows.

ex.
AB
Blah
Blahdate1
Blah
Blah
Blahdate2
Blah
Blahdate3
Blah

<tbody>
</tbody>



Without copying and sorting or removing blank rows I would like to return a list of only the dates one after another like this:
date1
date2
date3

The rows that have dates will be changing and the dates themselves will change, there is no formula to how they are appear in the list and all the values in column A are all the same.


I tried to use some sort of index/small/countblank combination but I'm not really familiar with those so I couldn't get it figured out.
Thanks!
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Welcome to the Board.

Is this what you want (adjust ranges to suit)?
Excel Workbook
ABCDEF
1blahList Dates
2blah1/5/201411/5/2014
3blah22/12/2014
4blah33/6/2014
5blah44/1/2014
6blah
7blah2/12/2014
8blah
9blah
10blah
11blah
12blah3/6/2014
13blah
14blah
15blah
16blah
17blah
18blah4/1/2014
19blah
20blah
Sheet1
 
Upvote 0
In case the dates are not in ascending order and you want to keep the occurrence sequence...

F2, control+shift+enter, not just enter, and copy down:

=IFERROR(INDEX($B$1:$B$20,SMALL(IF(ISNUMBER($B$1:$B$20),Ivec),ROWS($F$2:F2))),"")

where Ivec is defined using Formulas | Name Manager as referring to:

=ROW(Sheet1!$B$1:$B$20)-ROW(Sheet1!$B$1)+1

Adjust for the sheet name and range to suit.
 
Upvote 0

Forum statistics

Threads
1,216,096
Messages
6,128,807
Members
449,468
Latest member
AGreen17

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top