I want to check the column values of one data table to the column values of another data table, if it contains that value, i need to add data to that particular cell in first data table.
Create an For each Row activity for your first datatable. Use the row.item(COLUMN NUMBER) in a IF statement. IF row.item(COLUMN NUMBER).ToString.Contains(“blababla”).
When it goes in to the Then statement you can add that data to a cell of your choosing in an other table.