Forum Discussion

sjrrkb123's avatar
sjrrkb123
Helper III
5 years ago
Solved

Finding Duplicates in a Table

So I have worked with finding duplicates a lot in the past but I am struggling in the current situation.  What I am trying to do is to find any professional keys that exist in both the "Owner" & "...
  • amitchandak's avatar
    5 years ago

    sjrrkb123 , Create a new column like

     

    new column =
    var _1 = countx(filter(Table, [Project Key] = earlier([Project Key]) && [Professional Key] && earlier([Professional Key])),[Project Key])
    return
    if(_1 >1, 1,0)