Easy way to Achieve x++ or x+=

So I know in JavaScript there’s ++ and +=, where it takes a number and then adds one to it (++) or ads a number to itself (+=3). Is there a simple way to achieve this?

Basically looking for a way to have a number ad a number to itself to change it’s value. For example, I press a Column A button, and Column B is now equal to Column B+1. Hope that makes sense!

Like this @Samuel_Langford ? :blush:

The action formula I used is :

thisRow.ModifyRows(
  thisRow.[Push Count],
  thisRow.[Push Count] + 1
)

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.