I have a Row Counter column created with this formula: =COUNTIFS([Task Name]$1:[Task Name]@row, OR(@cell = "", @cell <> "")) . It is designed to house row numbers so I can reference that number in another formula.
I have the column Is Predecessor created with formula =IF(CONTAINS([Row Counter]@row, Predecessors:Predecessors), "Yes", "No").
Its purpose is to check whether the row is used as a predecessor for any tasks in the Predecessors column. However, it always returns No even for the rows which numbers are definitely used as dependencies in Predecessors column. What is the issue here?