Counting action on a button

Hello,

I was wondering if there was an easy way to count the number of click that were done on a button by a single user and therefore limit the number of clicks? Anyone has an idea?

Thanks

Stan

You bet! Add a user specific number column that increments every time they click it. When it reaches a threshold, prevent the clicking action (allow action when number is < threshold).

My latest video on social feeds has a parallel setup on button clicks (record true/false when clicked), You’ll want to use an increment action.

4 Likes

Thanks and I have tried to replicate your process to mine but it’s a bit different, as I want to limit to 2 click to one single button. i did try several process, not the visibility one tho which i believe will work. Any tips?

I think you can just add a user-specific column to store the counts for each user, and every time the user clicks, you increment 1 to that column.

Only show the button when click count < 2.

2 Likes