Input dialogue count

Hi,

I want to count number of times user inserted an input before guessing the correct answer in a flowchart.

Please advise.

Hi Amritr

Just use a basic integer variable to count the number of times. Each time an incorrect guess is made, us an assign to make count = count+1. then when the guess is correct you can display the variable in a message box as confirmation.

hi @amritr

As @AndyD Suggested you can increement the count based on iteration such as (while)

Thanks
Ashwin S