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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi there,
I'm currently looking at quotes received from suppliers for various products.
What I'm failing is to create a new column or measure to identify the products each of the suppliers have quoted for.
| Supplier | Product | Calculated Intersection |
| A | 2 | |
| A | 4 | 4 |
| A | 5 | |
| B | 4 | 4 |
| B | 2 | |
| C | 4 | 4 |
Any ideas?
Can the soltuion be probably enhanced by adding a filter on Supplier in order to determine column entries to be evaluated in the 3rd column / or a measure?
Best Regards
Tobias
@tweidner , create new column
new column =
var _dis = distinctcount(Table[Supplier])
var _disp = calculate(distinctcount(Table[Supplier]), filter(Table, [product] = earlier([product])))
return
if(_dis = _disp =, [product], blank())
@amitchandak , sorry, but dax just returns blanks... Did I overlook something?
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 9 | |
| 9 | |
| 8 | |
| 6 | |
| 6 |
| User | Count |
|---|---|
| 24 | |
| 20 | |
| 20 | |
| 14 | |
| 14 |