1

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 Answers1

1

Just add it with the Assign activity:

enter image description here

enter image description here

kwoxer
  • 3,734
  • 4
  • 40
  • 70