Make button add to a number in a different column

Hi. I want to have a button that each time it is pressed, increases the value of another column by 1.
Something like this:
image

Whenever I press the button, the count column of the same row increases by 1.

There was a similar topic in community some time ago, but it seems like the answer is not public anymore.
Thanks in advance.

Hey there!

Try to plug in this formula to the action field of your button:

ModifyRows(thisrow, column, thisrow.column+1)

That should work for you!

You could also try to pull in one of the voting template from the template list.

Hi,

@Scott_Collier-Weir has the right solution, but in this case it has to be

ModifyRows(thisrow, thisrow.Count, thisrow.Count+1)

@Piet_Strydom That would allow every user to increase the count value only once.

1 Like