Forum Discussion
RFGOfficeTC
Nov 17, 2023Copper Contributor
Using a value in a cell as row reference
I am mirroring Cells from my datasheet to a second sheet. Is there a way to use the Value in A1 in the formula. =Datasheet!A543. Is there a way to make "543" come from a reference cell. I would li...
- Nov 17, 2023
RFGOfficeTC So the reference cell with the row number is A1. Then use this formula:
=INDIRECT("Datasheet!A"&A1)
Riny_van_Eekelen
Nov 17, 2023Platinum Contributor
RFGOfficeTC So the reference cell with the row number is A1. Then use this formula:
=INDIRECT("Datasheet!A"&A1)
RFGOfficeTC
Nov 17, 2023Copper Contributor
This worked Perfectly. Thank you.