I'm looking to dynamically create a consolidated list from a column of data that has blank rows.
ex.
[TABLE="width: 200"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD]date1[/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD]date2[/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD]date3[/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
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!
ex.
[TABLE="width: 200"]
<tbody>[TR]
[TD]A[/TD]
[TD]B[/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD]date1[/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD]date2[/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD][/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD]date3[/TD]
[/TR]
[TR]
[TD]Blah[/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
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!