While activity

Hi all,
As I already mentioned that I’m UiPath fresher, I wanted to understand while activity to print 1-15 even numbers.

@shama93

Drag a while activity…give condition as True and in properties max loop count to be 15
and inside the loop use index+1 in log message and index will be the while loop index property again ,you need to assign a variable to it with name index or anything that you want

cheers

Ok thanq so much… will try

1 Like

Hi @shama93

=> Take an assign activity and create a Count Variable (int datatype) initialize the value as 1.

  • Assign → Count = 1
    => After assign take an while loop activity. In the condition give like this Count <= 15
    => Inside while use log message to print the Count values. In the message field give Count.toString and In log level select Info
    => After log message activity insert the assign activity to increment the Count.
    → Count = Count+1

Hope it helps!!

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