IronWaffleMan
IronWaffleMan

Reputation: 2702

Get the string value of first column cell given another cell?

Let's say I've got a cell that contains a formula that's selected a cell (i.e. =j5). In another cell, I want to have it show the string value of the cell that shares the row of this selected cell, but in a specific column (in this case column a), i.e. I want it to show the value of a5.

I've tried this: =INDIRECT("A"&(ROW(D24))), but it shows me 0 instead of the string that's in cell a24. I thought INDIRECT would work since it seems to be the way to build a cell reference manually, but it doesn't seem to be working.

edit: to try to clarify:

enter image description here

I'm trying to use cell D7 as a 'controller'; I put different cell references in it, e.g. here it's pointing to D3. In D8 is where I want the text to show 'Required Text' automatically.

Upvotes: 0

Views: 118

Answers (1)

Black cat
Black cat

Reputation: 6192

Pls. check this

=INDIRECT("K"&ROW(N3))

enter image description here

Upvotes: 0

Related Questions