Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
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' and 'Value2' combination. So because ID 1 and 4 share the same Value 1 + Value 2 combination, 1 is returned, and for the ID's whose values don't match anyone else, they receive a 0.
Any help would be much appreciated.
Table1:
| ID | Value1 | Value2 | ResultMatch |
| 1 | 1000 | 350 | 1 |
| 1 | 1000 | 350 | 1 |
| 2 | 1200 | 600 | 0 |
| 2 | 1200 | 600 | 0 |
| 3 | 720 | 120 | 0 |
| 3 | 720 | 350 | 0 |
| 3 | 720 | 350 | 0 |
| 4 | 1000 | 350 | 1 |
| 4 | 1000 | 350 | 1 |
Solved! Go to Solution.
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)
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)
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 64 | |
| 51 | |
| 46 | |
| 23 | |
| 19 |
| User | Count |
|---|---|
| 136 | |
| 110 | |
| 50 | |
| 32 | |
| 29 |