I have a workbook where I have 3 tables stacked on Sheet1.
So for example: The first table starts from A2 and ends on A10, the second from A13 to A19 etc.
I want to extract the first column values purely on unique values and without the headers or blank cells. So it should give me a nice column on Sheet2 with only the unique values without any zeros or blanks.
EXAMPLE:
oranges
apples
bananas
pineapples
grapes
Also, I want the filtered values on Sheet2 to be concatenated into another cell with a comma in between the values (except for the last value.
EXAMPLE:
oranges,apples,bananas,pineapples,grapes
I want to use VBA for it so it works in multiple versions of Excel.
So for example: The first table starts from A2 and ends on A10, the second from A13 to A19 etc.
I want to extract the first column values purely on unique values and without the headers or blank cells. So it should give me a nice column on Sheet2 with only the unique values without any zeros or blanks.
EXAMPLE:
oranges
apples
bananas
pineapples
grapes
Also, I want the filtered values on Sheet2 to be concatenated into another cell with a comma in between the values (except for the last value.
EXAMPLE:
oranges,apples,bananas,pineapples,grapes
I want to use VBA for it so it works in multiple versions of Excel.