Forum Discussion
Dominok123
7 years agoFrequent Visitor
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...
- 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)
Greg_Deckler
Community Champion
7 years agoThis 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)