Is there an option to change existing value to new value for a particular key in a dictionary data type, or should we use remove followed by add to get this done.?
Check below links hope this will helps you.
If it works, mark it as solution.
Thanks,
Neelima.
You can directly use an assign activity to modify the value for any key.
dict(“key”) = newValue
If the key is not present in the dictionary, then a new key value pair is created in this case.
Happy coding!
2 Likes