Hi , i have a for each loop where it reading data from excel sheet to add on queue. But I am unable to add each row. I have an assign . If i use item collection its giving me error for variable type. Item collection is also not reading the row right. Thanks
Its supposed to read from the excel sheet . Not sure if the variable is wrong
I have that as system. Collection. Gerneric. Dictionary-system.strung. System .data. Datatable
Hi @Sira
Can you try the below syntax in Item Collection
dttable.AsEnumerable().ToDictionary(Function(r) r("item_status").ToString(), Function(r) CType(r, Object))
Regards
What will the assign variable type be
It will be Dictionary(String, Object) @Sira
Regards
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.