I have a user defined function (VBA-based function) that I found this week that should do what you are looking for, posted below:
Find unique street texts by going to Data -> Remove Duplicates, then use the UDF to find each post code associated.
To add UDF:
1) alt+f11 to open visual basic
2) insert->module
3) Paste code
4) Close Visual Basic
To run, just type =lookupconcat(
The first variable is the one you are referencing i.e. a single street_text
Second variable is the column you are referencing from (your column A)
Third variable is return column (column B)
Fourth variable is the delimiter, i.e. what goes between the returned results. Use CHAR(10) to return in a paragraph with each postcode separated by a line break, or use " " to put a space between results.
Fifth Variable = TRUE (match the whole cell you are referencing, i.e. full street name)
Sixth Variable = TRUE (uniques only)
The code is referenced within. Click the link for more details.
Bookmarks