I have 3 columns:
"auto complete fill", "status", and "% complete"
I set % complete manually, but would like to automatically set it to 100% when status = Complete.
Since the formula get's overwritten when I manually set % complete, I created the helper column "auto complete fill" to hold a formula, hoping to use the formula to set the value of % complete if status = complete.
This is the formula I attempted to use in the auto complete cell: =if (status@row = "complete", [% complete]@row =100, "")
I get an error invalid column value. Seems SS won't let me set a new value in a different cell. The formula always assumes you're referencing the current cell. Is there a way to do this?