How to create 4 different variables with Generic Value type in your sequence? then adding

how to create 4 different variables with Generic Value type in your sequence?

Example
a = 1
b = 2
c = 3
d = 4

print operations
a + b
c + d
a + c
c + a

1 Like

I dont know what do you exactly need but…

if you make:

  • a.tostring + b.tostring = “12”
  • convert.toint32(a)+convert.toint32(b) = 3

Is that what are you refering?

I want to create 4variables with genericvalue on my sequence. Then after creating the 4variables i want to add it up.

Example this is my 4 variables with generic value
a=1
B=2
C=3
D=4
After creating this iwant try to add it like this way then it will print the correct answer.

A+b
C+d
A+c
C+a

Im new in uipath. Thanks for the help much appreciated

Try this…
Sequence1.xaml (7.4 KB)

2 Likes

Thanks a lot sir. This is exactly what i wanted to do.