0

Looking to get a range from another sheet based upon the Column Letter which is obtained from the current sheet.

So say that I designate A2 on the current sheet to the letter G.

I would then ask A10 to =AVERAGE('Sheet1'!(A2)2:(A2)999)

So essentially it would be =AVERAGE('Sheet1'!G2:G999)

However, this doesn't work. Anyone have any idea how to make this worK?

1 Answer 1

2

You would use the Indirect() function:

=AVERAGE(INDIRECT("'Sheet1'!" & A2 & "2:" & A2 & "999"))
Sign up to request clarification or add additional context in comments.

1 Comment

@Sparatan117 Glad to help. Please come back in a few minutes and mark as correct.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.