Hi everyone,
Few questions all interrelated.
- I disguised my actual field names, but this returns a blank cell.... how can that be? Shouldn't it return either Done or Not Done?
- I added ,"x" after Not Done and it didn't break it. Still returned blank cell. Odd that I did not get an UNPARSABLE message.
- First attempt, I built this in Word and copied it into Smartsheet. Same exact character for character, but kept getting UNPARSABLE message. Even used CLEAN function in Excel to remove hidden chars, but still returned UNPARSEABLE. When I keyed it in character by character into Smartsheet, it did not throw the UNPARSEABLE.
=IF([1Status]@row <> "N/A",
IF([1 Status]@row = "Done",
IF([2 Status]@row <> "N/A",
IF([2 Status]@row = "Done",
IF([3 Status]@row <> "N/A",
IF([3 Status]@row = "Done",
IF([4 Status]@row = "N/A",
IF([4 Status]@row = "Done", "Done", "Not Done"))))))))
Rather bewildered,
Tim