Aladin's 3 columns

A non-formula, non-code approach FYI.

Say the source data is given the defined name MyTable and has headers List1, List2 & List3. Save the file. Start an external data query such as via ALT-D-D-N & follow the wizard to the end choosing the option to edit in MS Query. Via the 'SQL' button edit the SQL to
Code:
SELECT DISTINCT *
FROM (SELECT List1
FROM MyTable
UNION ALL
SELECT List2
FROM MyTable
UNION ALL
SELECT List3
FROM MyTable)
WHERE List1 Is Not Null
Then the 'open door' icon to complete the query table into a worksheet. This is refreshable like a pivot table. As it is a query and doesn't use formulas it will be fast enough on tens of thousands of records; it can pull data from the same workbook, closed workbooks or database files. HTH. regards
 
Upvote 0

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.

Forum statistics

Threads
1,224,613
Messages
6,179,904
Members
452,948
Latest member
Dupuhini

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