Sum the integer from get text variable in while loop

By using the get text I get the integer value one by one by using tunning in the while loop. How can i add the all integer?

Hi @Rajiduraikannu_Santhosh_G

Create a variable called intValue of type integer and give default value of 0.

Assume get text variable output - outValue (of type string)

After get text activity put an assign activity and give,

intValue = intValue+ cint(outValue)

Thanks

Hi @prasath_S
Thank you so much, It’s working.
Thanks.

1 Like

@Rajiduraikannu_Santhosh_G glad it helped, please mark my answer as solution and close the thread so it may be useful to others in the future.

Thanks

1 Like

@Rajiduraikannu_Santhosh_G Refer this thread for how to mark a solution,

Thanks

1 Like

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