Hi I want to find unique rows from a datatable but want to apply the unique identification criteria on only few columns but the result should return the other columns also.
for eg
column1, column2,column3,column4
ABC,xxx,123,yyy
ABC,xxx,123,yyy
tys,yyy,343,yyy
tys,yyy,343,yyy
yru,ooo,999,ppp
I want to apply the unique filter criteria only on columns 2,3,4 . How can achieve this in C# in uipath?
Output Should be
column1, column2,column3,column4
ABC,xxx,123,yyy
tys,yyy,343,yyy
yru,ooo,999,ppp