I need to have a cumulative sum of hours spent on a task. The user can enter hours multiple times, daily, weekly and the Total Logged Hours will add them up in a cumulative sum. So you want a column formula like = [Logged Hours]@row + @cell where @ cell is the Total Logged Hours cell and Logged Hours is the cell where the user enters the hours spent on the task that day/week.
I had the AI generate the formula, just to check myself and it gave me:
=[Log Work (hours)]@row + @cell
which is an #INVALID OPERATION.
I also Googled this example which I tried and gives you INVALID OPERATION:
"In Smartsheet, to use the content of the cell that currently has the formula within the formula itself, you can use the special "@" symbol, which refers to the current cell's value within a formula; for example, if you want to add 5 to the value of the current cell, you would write the formula "=@cell + 5" in that cell. "
This doesn't work. I get the same thing #INVALID OPERATION.