Craig Conover
Craig Conover

Reputation: 4738

Referencing a variable column value in a Google Sheet formula

I want to use the value of a cell as the column value of a cell reference in a formula.

For example:

I think using INDIRECT is required but couldn't figure it out.

Upvotes: 3

Views: 4691

Answers (1)

player0
player0

Reputation: 1

do it like this:

=INDIRECT("F"&A1)

or if you want to lock A1 value:

=INDIRECT("F"&$A$1)

=INDIRECT("All Active - Paid Accounts!F"&$A$1)

Upvotes: 4

Related Questions