How to count how many times a click is made?

Hello everyone,
I want to ask if there is any way on how to count how many times a specific button is clicked.I have a process in which the submit button is clicked many times and I want to know how many times it is clicked?

Hi @Xheni_Xhensila

Have a look on the XAML file

ClickCount.xaml (11.6 KB)

image

Regards
Gokul

hmmm its only this? Interesting. Ill try

Updated XAML file @Xheni_Xhensila

ClickCount.xaml (11.6 KB)

1 Like

should I leave the counter 0 or 1 initialized, or it doesnt matter?

Count = 0 and it will increment after each click @Xheni_Xhensila

thank you @Gokul001

1 Like

I believe count should be 0.
After your first click, the variable should be 1 and not 2.

Btw, the workflow is an infinite loop. You will need to manually stop it.

1 Like

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