I have a csv file that contains all the data that needs to be data entered. However, some of the data needs to be standardized with a mapping table which is in another Excel with multiple worksheets, each containing one mapping table. How to standardize the data with the mapping table in UiPath?
If you don’t mind, can I ask an extra question? If there are many columns in the input table, not just 5, how do I effectively include all the other columns, but only exclude the ones that need to be mapped?
this cannot be done by modifying Final_DT = DT.AsEnumerable.Select(Function(r) DT.Clone.LoadDataRow({r(“Name”).ToString,r(“Gender”).ToString,r(“Age”).ToString,Dict_Country(r(“Country”).ToString).ToString,Dict_Sub(r(“Subject”).ToString).ToString},false)).copytodatatable? Or can I use assign activity to include all the columns in the input table and append the mapped columns to it.