Hello All, my first post here.
I am curious how to print my data from a dictionary to an Excel file.
The dictionary (myDict) contains a key (string) and a List(of string).
The List(of string) is called dictList and contains two items.
I initialize both at the beginning to be able to work with them.
Then I read the range of my config xlsx file to add the key-value pairs to the dictionary and they correctly appear in the dictionary.
Example: “180012”: {“Eastern Airlines”, “Aviation”}
Now, I would like to print the content to Excel by using Build Data Table activity with output outDT and later use Write Range (with outDT as input), all in a For Each “key” in “myDict” activity.
I am struggling how to achieve this given that the dictionary has a list as its values and i need to print them in seperate cells. Output should look like in Excel: A1: key, B1: value(0), C1: value(1). Thanks!