I have one sheet that contains a number of calculations and I am trying to use a cell reference in another sheet if a condition occurs. I have the formula correct when all the data is in one sheet, but when i try to pull from another sheet, i am missing something.
When in the same sheet, i am using the following formula to basically say that if it is a value of Yes in the surgeon field, then display a value that appears in teh Naive Cognitive Composite Score field:
=IF([Surgeon/ FA]@row = "y", [Naive Cognitive Composite Score]@row)
I am trying to separate this information into multiple sheets because we have various roles and it is confusing to have surgeon information in the same sheet as other roles.
So in the new sheet, i am trying to reference the same columns, but the @row seems to be mixing it up since that value is not in my destination sheet.
This formula: =IF({Naive Surgeon} = "Y", {Naive Cog Score}) returns an INVALID OPERATION
This formula: =IF({Naive Surgeon}@row = "Y", {Naive Cog Score}@row) returns UNPARSEABLE
Any assistance would be most appreciated!