Hello all,
I have a sheet with two drop down tabs in sheet 1 cells A2 and A3
A2 = Region
A3 = City
the following formula in cell D2
to return the address of the particular place found when the search criteria of city or region is entered.
So I am trying to lookup the data found in sheet 3 'Main cities'!1:1048576 and return addresses based on city or region codes.
In sheet 3 City is in column A and region is in column B and address (result I want to return in sheet 1 D2 - D35) is found in column E of sheet 3
I have been trying around with differing formulas such as
and other xlookup types etc but as much as this formula works to return the first address from column D in my main cities sheet, when I pull this formula down it just continues to pull the first address only from the main city sheet even though there are multiple addresses for each city.
Can someone please help!
I have a sheet with two drop down tabs in sheet 1 cells A2 and A3
A2 = Region
A3 = City
the following formula in cell D2
Excel Formula:
=IFERROR(VLOOKUP($A$2,'Main cities'!$1:$1048576,5,FALSE),"")
So I am trying to lookup the data found in sheet 3 'Main cities'!1:1048576 and return addresses based on city or region codes.
In sheet 3 City is in column A and region is in column B and address (result I want to return in sheet 1 D2 - D35) is found in column E of sheet 3
I have been trying around with differing formulas such as
Excel Formula:
=IFERROR(VLOOKUP($A$2,'Main cities'!$1:$1048576,5,FALSE),"")
Can someone please help!