Iterate Dictionary into another dictionary

Hi RPA devs. I have some problem. I’ve create some dictionaries with 20 objects each, lets call each dinctionary like “D1”, “D2” and “D3”. And at the end i’ve put every Dictionary in a big dictionary called “Nest”.

Now I want to use every object of each “D”. So I’ve made a “for Each” activity to see every “item” (D1,D2,D3) into the “Nest”. But the problem is, I’ve tought to use another “for Each” for every “item” to see the 20 objects in each dictionary but it looks that I can NOT iterate an item.

What can I do to solve this? please help me :open_mouth:

Thank you

This way doesn’t help?

2 Likes

I think you just update “item” to any other word. In this case, “item” is just a variable. You can’t have 2 variables in the same scope with the same name, which is why you are having issues.

1 Like

This is what i can use:

image

@KevinDS

Check the attached xaml, I have created dictionaries as mentioned and working fine for me.

Dictionary.xaml (10.7 KB)