i have two column excell 1 and excell 2…excell 1 column have many string also excell 2 column have many string…i want to compare to take specific one string.
example:
Excell 1 column : 2194-909-0, PATUAKHALI BRANCHOL1
Excell 2 column : PATUAKHALI
how match and compare it…
Thank you
Read Range : : To store ‘Excell 1’ and ‘Excell 2’ column values in datatable.
Use a For Each Row in DataTable activity to loop through each row.
Use an If activity to check if values match.
Condition : CurrentRow(“Excell 1”).ToString.Equals(CurrentRow(“Excell 2”).ToString)
It will check if both column values are exact match.
If you want check if their is partial match, you can use Contains instead of Equals
thanks for your response…
but i need to here match specific one string…
here one string like:2194-909-0, PATUAKHALI BRANCHOL1
another string is:PATUAKHALI
in this case how to match the column…if i have many column data,how to solve that?please give me some knowledge…still i can not solve that
Can you please let me know if you want compare a particular string value to be matched with all values in a column.
Also, if you can share sample excel file screenshot that would be helpful.
here i want to check 0 index column to another 0 index column…after that 1,2,3 etc…
always take input from two excell file…and compare and finding match index wise.