Forum Discussion
jkpanic
Oct 16, 2019Copper Contributor
Fixing row numbers and changing columns in copying formulas
Hi When I write a lookup formula such as "='Sheet1'!B3" and then try to copy it down a column I changes the row number. What I want is for the row number to stay fixed and the column to change. I...
Subodh_Tiwari_sktneer
Oct 16, 2019Silver Contributor
You may try this...
In B2
=INDIRECT("'Sheet1'!"&ADDRESS($B$1,ROWS(A$1:A2)))
and copy it down.
The cell A1 on Sheet2 contains a dropdown list for all the names in column A on Sheet1 and if you change select a name from the dropdown, the formula will return the correct output as per the name selected.
Please refer to the attached for more details.