Forum Discussion
Anonymous
6 years agoNot applicable
Function RELATED expects a fully qualified column reference as its argument
Hello,
Getting the error
"Function RELATED expects a fully qualified column reference as its argument."
when trying to create a new column in the [Sheets] Table using this formula.
Scenario = IF(AND(RELATED(Titleblocks[Scale Bar]=1),(RELATED(Titleblocks[Scale Text]=1))),"A","n.a.")
I found this post for the same error but it looks that we are trying different things.
Thank you for your help.
J
- Anonymous6 years ago
Sorted.
Just needed some extra paranthesis.
Scenario = IF(AND(RELATED(Titleblocks[Scale Bar])=1,(RELATED(Titleblocks[Scale Text])=1)),"A","n.a.")
2 Replies
- AnonymousNot applicable
Sorted.
Just needed some extra paranthesis.
Scenario = IF(AND(RELATED(Titleblocks[Scale Bar])=1,(RELATED(Titleblocks[Scale Text])=1)),"A","n.a.") - MFelixSuper UserHi Anonymous,
Believe your issue is related with the end of the formula parĂȘnteses. Try the following
Scenario = IF(AND(RELATED(Titleblocks[Scale Bar]) =1, (RELATED(Titleblocks[Scale Text]) =1)),"A","n.a.")
Regards,
MFelix