I’m looking for a way to highlight duplicated entries but in a dynamic way.
I have the following formula that checks if the value is duplicated within the current table and highlights those rows if there is a match.
thisRow.[ColumnName].In([TableName].ForEach([ColumnName]).ListCombine().Duplicates())
My question is, is it possible to apply a different color to the highlight based on these values? i.e. have duplicates of Item1 colored in red, duplicated of Item2 colored in blue, and so on.