How do I write a formula to return the row# of a cell that is referenced by another cell and I must go through that other cell to learn what cell it is referencing.
In other words:
IF:
"Other"!B3=4
then
A1="other"!B3=4
I want to use cell C1 to Find Row("other"!B3) or to show "3", but C1 needs to adapt to changes in A1.
Therefore you rely on A1 to know that you need to return Row("other"!B3) in C1.
This is because in the future A1 could equal "other"!B4 and in that case C1 needs to return Row("other"!B4), or "4", and not Row("other"!B3) or "3".
thank you for your help
In other words:
IF:
"Other"!B3=4
then
A1="other"!B3=4
I want to use cell C1 to Find Row("other"!B3) or to show "3", but C1 needs to adapt to changes in A1.
Therefore you rely on A1 to know that you need to return Row("other"!B3) in C1.
This is because in the future A1 could equal "other"!B4 and in that case C1 needs to return Row("other"!B4), or "4", and not Row("other"!B3) or "3".
thank you for your help