Can I convert a string into a Variable in UiPath?

469 views Asked by At

I have a couple argument variables like this:

in_Topic = "New Topic"
in_Meeting = "Demo Meeting"

Also I have a dictionary

myDict = {"Topic": "in_Topic", "Meeting":"Demo Meeting"}

How can I link the Value in the dictionary to be the variable?

For example: myDict("Topic") = "New Topic"

This is in UiPath by the way.

There are different ways but I could not figure this part out. Can you guys help me?

1

There are 1 answers

0
kwoxer On

Just add it with the Assign activity:

enter image description here

enter image description here