0

I want to update the cell reference in C3 depending on the 'Current Day'.

For example, if 'Current Day' is 'Thu' then I'd like C3 to be 'Z3'

Any suggestions to get me started? webpages to read?

enter image description here

1
  • 1
    Use index/match or hlookup to find the cell address (Z3), then indirect to get the value (34.2) Commented May 16, 2017 at 10:31

2 Answers 2

3

To get the value on the basis of Current Day use the following formula:

=HLOOKUP(H3,$I$2:$O$3,2,FALSE)

See image for reference

enter image description here

On seeing the formula in image attached probably you are looking for INDIRECT function:

=INDIRECT("'5+ 000""s By Day'!" & C3)

You can combine both in one formula as

=INDIRECT("'5+ 000""s By Day'!" & HLOOKUP(H3,$I$2:$O$3,2,FALSE))

For details on INDIRECT function see this.

Sign up to request clarification or add additional context in comments.

2 Comments

Thanks for going the extra mile by doing the INDIRECT formula
thanks for the INDIRECT function, that was exactly what I needed to solve my issue. google led me here. allowed me to pull up a value from another cell based on the string version of the cell location. cheers! =INDIRECT("'worksheet1'!R$1")
1

A hlookup() would do it - =HLOOKUP(TEXT(TODAY(),"DDD"),I2:O3,2,0)

Comments

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.