Forum Discussion

Dominok123's avatar
Dominok123
Frequent Visitor
7 years ago
Solved

Finding if Multiple unique ID's share the same values across two columns

Hey,   So I'm trying to figure out how to create the fourth column 'ResultMatch' as seen in the table below. What I need this column to return is whether or not multiple ID's share the same 'Value1...
  • Greg_Deckler's avatar
    7 years ago

    This should work as a column or measure:

     

    Column = 
    VAR __table = FILTER(ALL('Table6'),[Value1]=EARLIER([Value1]) && [Value2]=EARLIER([Value2]) && [ID]<>EARLIER([ID]))
    VAR __count = COUNTROWS(__table)
    RETURN
    IF(ISBLANK(__count),0,1)