Say source data is like
col1 col2
a1 2
b1
b2 2
c1 1
d1
d2 2
d3
I want to make another list that looks like
col1 col2
a1 2
b2 2
c1 1
d2 2
How to do this? Thanks.
|
Say source data is like
I want to make another list that looks like
How to do this? Thanks.
| |||
|
feedback
|
|
You can do this in situ by converting your range to a list and then filtering on col2 to not show blanks. | |||||||||
feedback
|