How to check if lookup column is linked to a deleted row?

I’m having issues where i am referencing deleted rows in a lookup column. Is there a way to filter by IsError, or a way to search for these instances where a deleted row is referenced?

[Update] I played with this a little and found a temporary solution. I check if the Lookup Column is blank in a new column called _IsBlank (formula: Parent.ColumnName.IsBlank() ) [note: this only works if I use a column name to check for blank, instead of just checking for isblank on the Parent column], and make another new column called _IsBlankOutcome to check if the _IsBlank column is a logical value (formula:_IsBlank.IsLogical() ). Then I can filter for all rows with a false _IsBlankOutcome.

1 Like

You should also just be able to use the isFromTable() formula for this!

3 Likes

Thank you! I wasn’t able to figure that out with the terms I was searching. I appreciate that there is such a simple option available.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.