On Worksheet_SelectionChange in L1 I have VBA populate ActiveCell.Address
Trying to figure out a formula, by using value in L1, to return intersection of ActiveCell Row and specific Column.
I believe =INDIRECT formula might be a way to get it done, something along the lines of =INDIRECT(L1&"H"), but that's not quite it, gives #REF!
L1 shows references this way: $G$11
In that example 11 is the ActiveCell Row, guessing needs to be extracted and "H" added to it...
VBA Code:
Range("L1").Value = ActiveCell.Address
Trying to figure out a formula, by using value in L1, to return intersection of ActiveCell Row and specific Column.
I believe =INDIRECT formula might be a way to get it done, something along the lines of =INDIRECT(L1&"H"), but that's not quite it, gives #REF!
L1 shows references this way: $G$11
In that example 11 is the ActiveCell Row, guessing needs to be extracted and "H" added to it...