Extract name from a column in different sheet

Mr2017

Well-known Member
Joined
Nov 28, 2016
Messages
644
Office Version
  1. 365
  2. 2016
Platform
  1. Windows
Hi

I have a list of addresses in column A of Sheet 1 in a file (please see the 9 rows below).

I will regularly need to populate the 'City' name in column B of Sheet 1, using the City names from column D of Sheet 2.

And I've been advised to do this manually, but I'm sure there's a formula that can do this!? Can anyone please advise?

Please find below sample data for Sheet 1 - there are only 9 rows (3 rows of 3 addresses).

I have also pasted data from Sheet 2 below (it's just column D, with the names of the Cities that I have to manually populate into column B of Sheet 1. I'd be grateful if anyone could help with this?

Sheet 1

AddressLocation
24 Place des Reflets La Defense, Paris, France
24 Place des Reflets La Defense, Paris, France
24 Place des Reflets La Defense, Paris, France
50 E Randolph Street, Suite 7100, Chicago, Illinois, USA
50 E Randolph Street, Suite 7100, Chicago, Illinois, USA
50 E Randolph Street, Suite 7100, Chicago, Illinois, USA
10 St. James'S Square, London, United Kingdom
10 St. James'S Square, London, United Kingdom
10 St. James'S Square, London, United Kingdom

Sheet 2

Paris
Paris
Paris
Chicago
Chicago
Chicago
London
London
London




 

Excel Facts

Create a Pivot Table on a Map
If your data has zip codes, postal codes, or city names, select the data and use Insert, 3D Map. (Found to right of chart icons).
Have you tried putting =Sheet2!D1 in a cell and dragging that down?

Its not clear if you want to move the values from sheet2 to column B of sheet1, or if you want the formula in column B to extract the city name from the cell in column A.
 
Upvote 0
Hi Mike

Thanks for your response.

I'd like to formula in column B to extract the City name in column A (for Sheet 1), using the City data from Sheet 2.

The order of the Cities in column D of Sheet 2 aren't always in the same order of the data in Sheet 1. So I can't use the =Sheet2!D1 formula.

I'd like to use a formula that will check if the City in column D of Sheet 2 matches the City in the cells in column A of Sheet 1, and if there is a match, then populate column B of Sheet 1 with the text from column D in Sheet 2.

Does that clarify the question?

Thanks in advance.
 
Upvote 0
If you want the city name extracted from column A, then =TRIM(MID(SUBSTITUTE(B7,",",REPT(" ",100)),100,100)) will return the text between the first two commas (the city name).

The values in Sheet2 have no effect on what city is in a cell of sheet1 column A. I don't understand the "using the City data from Sheet 2" part.
 
Upvote 0
Hi Mike

Thanks again for the prompt response.

That's a good solution, but it doesn't work for the Chicago example above.

However, I've thought of a way of possibly doing it....

I'll copy and paste the Cities from column D in Sheet 2 into column J of Sheet 1.

Then I would like to amend the formula below, so that it checks if the text in cell J1 is in cell A1 in Sheet 1, and if it is, then return the text in J1, otherwise leave it blank.

Do you know how to amend this formula to do that? I would put this formula in cell B1 of Sheet 1.

=IF(ISNUMBER(SEARCH("Text in column J",A1)),"Text in column J","")

I've used it when searching for specific text, which I've typed in the inverted commas.

Your thoughts would be greatly appreciated!

Thanks in advance.
 
Upvote 0
Excellent!!

That worked!!!

Thank you very much!!
 
Upvote 0
another approach with Power Query and no duplicates
AddressCitiesAddressCities
24 Place des Reflets La Defense, Paris, FranceParis24 Place des Reflets La Defense, Paris, FranceParis
24 Place des Reflets La Defense, Paris, FranceParis50 E Randolph Street, Suite 7100, Chicago, Illinois, USAChicago
24 Place des Reflets La Defense, Paris, FranceParis10 St. James'S Square, London, United KingdomLondon
50 E Randolph Street, Suite 7100, Chicago, Illinois, USAChicago
50 E Randolph Street, Suite 7100, Chicago, Illinois, USAChicago
50 E Randolph Street, Suite 7100, Chicago, Illinois, USAChicago
10 St. James'S Square, London, United KingdomLondon
10 St. James'S Square, London, United KingdomLondon
10 St. James'S Square, London, United KingdomLondon

Power Query:
let
    Cities = Excel.CurrentWorkbook(){[Name="Table11"]}[Content],
    Address = Excel.CurrentWorkbook(){[Name="Table10"]}[Content],
    tblCities = Table.AddColumn(Address, "Cities", each Cities),
    Expand = Table.ExpandTableColumn(tblCities, "Cities", {"Cities"}, {"Cities"}),
    Contains = Table.AddColumn(Expand, "Contain", each if Text.Contains([Address], [Cities]) then [Cities] else null),
    NullOut = Table.SelectRows(Contains, each ([Contain] <> null)),
    Group = Table.Group(NullOut, {"Address", "Cities"}, {{"Count", each Table.RowCount(_), type number}}),
    RC = Table.RemoveColumns(Group,{"Count"})
in
    RC
 
Upvote 0
Hi @mikerickson

I was just wondering this.

Do you know how to make that search function search for text in a whole column rather than one cell?

So, for example, let's say that cell A1 had the City 'Chicago' in it, but cell J1 didn't, it would return a blank.

But then if cell A1 had 'Chicago' in it, and the word 'Chicago' was found in column J, then cell B1 would return the matching word ie 'Chicago' from column J....

Hi @sandy666

Thanks for the proposed solution. But I'm not familiar with Power Query yet, so I'd have to learn how to use it, first!
 
Upvote 0

Forum statistics

Threads
1,216,966
Messages
6,133,775
Members
449,831
Latest member
Watever

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