Hello. I am new to UiPath.
I want to look for the article no. from product code using vlookup and there is an error
VLookup: DoubleConverter cannot convert from (null).
Appreciate you can provide a demo.xaml. Thanks!!!
can you use the below linq query to achieve the same things.
DT-Filtered= DT2.AsEnumerable().Where(Function(row) DT1.AsEnumerable().Any(Function(r) r.Field(Of String)(“Article No”) = row.Field(Of String)(“Article No”))).CopyToDataTable()
you can use the above linq query in assign activity.
Ideally you can read the data and then use join datatable…that will get all the barcodes mapped and then you can write the data back
Cheers
Yes the linq query worked. How I can show it on excel? I have tried but the variable type is not correct. Please show the step. Thanks!!
it was stored it as data table, then you can use write range activity to write the data table in excel.
you can check mark add headers in properties panel. also you can use write range ( excel activity or workbook activity whatever you want.
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.