The workflow is about reading the first row with multiple columns from excel and needs to compare this to another excel file first row with different column quantities and different values of the column.
If they are not the same, It will print a simple message.
If they are the same, I will print a simple message.
By the way, I’m using only Modern Activities on UiPath.
These are some files that have similar columns but the workflow is the same I need to compare these columns from different files. test1.xlsx (8.2 KB) test.xlsx (8.4 KB)
I.-I was trying this way but It only prints every char of the data table.
any ideas, please?
I’ve been reading other examples but It’s about 2 columns where the author only compares 2 columns, Could someone help me, please?
If i understand your requirement correctly, the following will work, for example.
This flow check whether each value of specific columns in the row of 2 datatable are same or not.
Hi Yoichi.
I’m trying to use that but when I’m inside the “For each row in DT”
I have to uncheck “Has Header” in the activity Read Range of the file if not the workflow doesn’t go there.
Did you do that as well?
Plus, When I’m inside the “For each row in DT”, If I print the value of CurrentRow(“Codigo Incidente”) doesn’t work but CurrentRow(“Column1”) works, and so on.
I think as I selected a single row, It takes that row as a column header when I checked “Has header” plus uipath shows me empty values because I don’t have a second row plus It doesn’t go to the loop.
I’m trying just to verify if the 2 excel files have the same column headers("Codigo Incidencia,Mes…etc) and column quantities.
test1.xlsx has 11 columns.
test.xslx has 13 columns.