Forum Discussion
igesanmi
Jan 01, 2023Copper Contributor
I need a formula for this.
I have an document with let's say value of 2 in cell G5 and I want want to reference cell A2 into cell B4 without typing the 2 but using the value in G5 since that is already 2. So basically I need ...
- Jan 01, 2023
You can use the INDIRECT function. Enter the following formula in B4:
=INDIRECT("A"&G5)
We concatenate the fixed column letter A as a literal string "A" with the dynamic row number in G5.
HansVogelaar
Jan 01, 2023MVP
You can use the INDIRECT function. Enter the following formula in B4:
=INDIRECT("A"&G5)
We concatenate the fixed column letter A as a literal string "A" with the dynamic row number in G5.
- igesanmiJan 02, 2023Copper ContributorThank you, this worked perfectly.