This is unlikely possible with Smartsheet but I'd LOVE to be proven wrong :)
I'm trying to Highlight Cells in the row that have errors. There might be one to twenty columns in that row with errors at any given time.
Reason for it: One broken formula (or cell with bad data) can break several other formulas in that row. And if you have a lot of columns in the sheet or if you're developing the sheet it could be difficult to identify the problem if you don't fix it when it right when it happens. So the goal is to quickly identify when a change breaks one or more formulas in that row.
In the below example, Columns "Badformula1", "Badformula2", and "Badformula3" all have some sort of formula error and would be highlighted if there was a problem. This could be three different conditional formatting rules, that's OK. (The image is the wishful thinking image of what I want it to look like, not a working one)
The work-around I've found only works in a couple situations and not all of them, which is to set a conditional formatting rule for each column based on if the cell breaks the normal data type in that form.
Examples:
- BadFormula1 = Always a Number. So the condition would be, IF BadFormula1 is not a number,
- Badformula2 = Always a letter, so the condition would be, "IF BadFormula2 is not 1 or 2 or 3 or 4
- In BadFormula3 you'll see that the value is not predictable so there's no "workaround" (That I have found)
So my question to the community applies to cells with unpredictable values.
I tried:
- Using a helper column and using IF(ISERROR like this: =IF(ISERROR([BadFormula1]@row), "Error", "No Error"). My hope was to conditionally format based on the value of "Error".
- OUTCOME: #BLOCKED error message in that cell. Not helpful.
- I also tried "IFERROR" in both the cell itself and a helper column. same thing happens.
- OUTCOME: Same as #1
- Googling it
- Same same solution was given but it doesn't work because it's referencing a cell with an error.
- Using AI,
- Same same solution was given but it doesn't work because it's referencing a cell with an error.
Does anyone here have a solution that works?
Alternatively, if there's a way to use a formula to check all rows in the sheet for errors and display SPECIFIC TEXT like "Error found", that would be OK too. (See yellow highlighted cell in image above)