I am using a formula to import some values from a google sheet and concatenating them to make one value.
=CONCATENATE(IMPORTRANGE("url", "'Sheet1'!A2")," ",IMPORTRANGE("url", "'Sheet1'!B2")," ",IMPORTRANGE("url", "'Sheet1'!C2")," ",IMPORTRANGE("url", "'Sheet1'!D2"))
How can I make the cell references dynamic so that if I drag it down cell value changes to A3,B3,C3,D3?