I found this formula in the community that works perfectly to check the box if there is any text in certain cells.
=IF(OR(ISTEXT([Column1]@row), ISTEXT([Column2]@row), ISTEXT([Column3]@row), ISTEXT([Column4]@row)), 1, 0)
I'm getting a column formula syntax error when I try to apply it to the whole column:
"The column formula syntax isn't quite right, see our help article Set Formulas for All Rows with Column Formulas | Smartsheet Learning Center for more information."
Use Case: A form is being used to populate the sheet. If there are contents in certain columns/fields on the sheet, the box gets checked. That check box will trigger automation.
Thanks for your help!