I have a Spreadsheet with multiple sheets. In one of them I'm trying to populate a column combining the value of two columns from another sheet.
Something like: Col1: City, Col2: Country -> In new Sheet, Location = (Col2), (Col1).
I've tried this but so far no luck:
=INDIRECT("FormaData!P2:P"&"FormData!O2:O")
FormData is the name of the external sheet, and the columns that I'm trying to automatically populate from are:
P2 to end of P (city) and O2 to end of O (country).
Any help will be highly appreciated!
=FormaData!P2 & ", " & FormaData!O2
and copy down? – Scott Craner=INDIRECT(FormData!P2&", "&FormData!O2)
, and it gives me error:Function INDIRECT parameter 1 value is 'Barcelona, España'. It is not a valid cell/range reference.
– Eric Mitjans