Hi Team
How to create nested dictionary for below input
Input:
Thanks
Shaik
Dictionary only can have Key and value. What exactly you are trying/looking for here?
from each row data table
Kadapa is a key then values are yerraguntla and North
thanks
shaik
Declare a dictionary datatype (Dictionary<string, object>) variable with default value this New Dictionary(Of String, Object) From {} to initialize it.
![]()
Now in Assign activity assign the key values like this:
Replace hardcoded values to as per your requirement.
Before adding a key,value

After adding:
@ashokkarale yes
output like —Kadapa yerraguntla North
Using dictionaryPerson("Kadapa") anywhere you required like in Log Message message will give you the expected result
use for each row in datatable inside that use assign as below
dict(currentrow(0).ToString) = currentrow(0).ToString + " " + currentrow(1).ToString + " " + currentrow(2).ToString