I am trying to write a formula make excel place data in a cell based on the contents of a different cell BUT the formula cannot be in the cell where excel places the data.
If we take the below simple formula and place it in Cell B1 it works fine:
=IF(A1=1,"Okay","Nope")
If I type the number 1 in cell A1 then excel returns Okay in Cell B1 and Nope if A1 is empty or has a different number.
But that is not what I want
I want something like If A1 contains the number 1 then Excel should place/populate cell C1 with the word "Okay"
=IF(A1=1,C1="Okay","")
To be clear this is not updating the cell that contains to formula depending on the contents of a different cell, this is about placing specific text in a different cell based on another cells contents without the formula being in the cell where the text is placed.
It seems such a simple task to me but I am unable to work out how to make it happen.
Is there something I am missing?