I have excel fiel its contains the html code(html code contains table) , if it’s contains i want to get original data so I created workflow like if excel file contains html code, get that cell value of html code and write in text file and save as. html extension once it’s done then I opened this. html file in chrome application and extract the data and store in different datatable like wise I have to do if any other cell contains html code in excel file. so now i have to create the datatable dynamically for extract the data from many html file opened in chrome application for store the data. So Please help me to create the datatable dynamically in UiPath
Use a dictionary of type string as key and datatable as value…that way you can create any number of datatable dynamically as needed and access then using the key or string name you want to use
Hope this helps
Cheers
I can create the dictionary but for more understanding, Any example please?
working with directories have a look here:
Dictionary can be created and you can assign datatable like thid
Dict("TableName") = Datatablevariable…
All othe manipulations you can check the above link
Cheers