Hello Ram,
I am developing a bot where i am in situation where i need to perform a specific activity for a (10+2 x) number of times, where x is a variable.
For example i need to send hotkey tab , when x=1 it should be like (10+21)12times
x=2 it should be like (10+2*2)14times
Can you please help me on this how to enter this expression (10+2*x)timeshotkey
@Vishnu_gadikota all the variables are int32
pass value of x
Assign a counter variable…=1 ----a
Assign another variable =10+2*x(your expression)-----b
add a while …give condition as a<=b
use send hotkey inside while ----
increase counter by 1 i.e a=a+1 after using send hotkey