Forum Discussion
Rocketscientist1
Oct 21, 2023Copper Contributor
Auto update a cell ref with in text instruction
To help worksheets users, I write instructions in a cells at the end of relevant columns. Typically “Check that this value (i.e. the value calculated in the following cell) equals D54.” How can I m...
- Oct 26, 2023Many thanks, from your response I was able to decipher the code and use in several other situations👍
PeterBartholomew1
Oct 21, 2023Silver Contributor
= "Check that this value equals " & ADDRESS(ROW(D54), COLUMN(D54),4,)
Or to prove that no formula is too trivial to be a Lambda function
= Instructionλ("Check that this value equals ", D56)
where
Instructionλ(text, ref)
= text & ADDRESS(ROW(ref), COLUMN(ref), 4)
Rocketscientist1
Oct 26, 2023Copper Contributor
Thanks, worked a treat😊