Hi,
Could you please help with the below requirement with Uipath workflow?
I’m new to the Uipath
I want to highlights duplicates in column A & C
have attached images for the example input and output
Input
Output
Thank You
Hi,
Could you please help with the below requirement with Uipath workflow?
I’m new to the Uipath
I want to highlights duplicates in column A & C
have attached images for the example input and output
Input
Output
Thank You
hi, welcome to the forum
Hi,
First, let’s get repetitive values only to array of string
arr = (From row In dt
Group row By k=row("ColName").ToString.Trim Into grp=Group
Where grp.Count >1
Select r = grp(0)("ColName").ToString).ToArray
Second, let’s find indexes of rows in dt , that should be colored (also array of string)
rows_to_color = (From row In dt
Where Array.IndexOf(arr, row("ColName").ToString) > -1
Select val = dt.Rows.IndexOf(row).ToString).ToArray
Than use Set Range Color activity
Main.xaml (8.9 KB)
Thank you so much
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.