I have discovered multiple ways to create a error checking column that looks in all columns to see if there's a broken formula somewhere. However, all the ways I have found aren't very elegant and don't provide the type of details I want.
Example:
=IF(ISERROR([First Column in Sheet]@row:[Last Column in Sheet]@row), 1)
This works to be blank if I don't have any errors, but if there are errors, I get the kind of error in the result. Eg. "#BLOCKED" or "#UNPARSEABLE". etc.
It would be amazing to be able to identify all the errors in the columns. So if there's a #BLOCKED and an #UNPARSEABLE in the same row, it lists both side by side as the returned value. Or to somehow color the row using conditional formatting based on the type of error it is :)
Has anyone come up with a great formula they use to do better than this, that they would be willing to share? (Definitely something that uses a range instead of having to name individual columns, of course.)