I am using MS Query to get external data and return it to cells A94 through B100(column A is the return name column B is the return value)
My formula in cell A1 starts off like this:
=
IF(A94="Rutkowski",B94,
IF(A95="Rutkowski",B95,
IF(A96="Rutkowski",B96,
IF(A97="Rutkowski",B97,
IF(A98="Rutkowski",B98,
IF(A99="Rutkowski",B99,
IF(A100="Rutkowski",B100,"0"
)))))))
BUT after a couple of opens it looks like this:
=
IF(A94="Rutkowski",B94,
IF(A95="Rutkowski",B95,
IF(A96="Rutkowski",B96,
IF(A97="Rutkowski",B97,
IF(A98="Rutkowski",B98,
IF(#REF!="Rutkowski",#REF!,
IF(A99="Rutkowski",B99,
IF(A100="Rutkowski",B100,"0"
)))))))
The result in the spreadsheet cell A1 has a value of #REF! and my users are wondering what is this value.
Any help would be greatly appreciated!!
Thank you.
My formula in cell A1 starts off like this:
=
IF(A94="Rutkowski",B94,
IF(A95="Rutkowski",B95,
IF(A96="Rutkowski",B96,
IF(A97="Rutkowski",B97,
IF(A98="Rutkowski",B98,
IF(A99="Rutkowski",B99,
IF(A100="Rutkowski",B100,"0"
BUT after a couple of opens it looks like this:
=
IF(A94="Rutkowski",B94,
IF(A95="Rutkowski",B95,
IF(A96="Rutkowski",B96,
IF(A97="Rutkowski",B97,
IF(A98="Rutkowski",B98,
IF(#REF!="Rutkowski",#REF!,
IF(A99="Rutkowski",B99,
IF(A100="Rutkowski",B100,"0"
The result in the spreadsheet cell A1 has a value of #REF! and my users are wondering what is this value.
Any help would be greatly appreciated!!
Thank you.