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!View all the Fabric Data Days sessions on demand. View schedule
Hi everyone,
After hours of arguing with ChatGpt, sudden blurry vision and probably acute OCD due to errors showing up with my formula, Im finaly here.
All I want is to display the count of products with the same DCI for each combination of labs, even if the labs are different ( all what I managed to do is to display it only when the lab is the same, if my boss sees it ... 😏)
Well that's it, Im counting on any charitable soul here, thanks in advance 🙏🏻
PS: the actual formula:
CommonProducts =
CALCULATE(
COUNTROWS(db),
ALLEXCEPT(db, db[Lab], db[DCI])
)
Solved! Go to Solution.
Hi @Aida_Ken ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table =
var _table1=
DISTINCT('db'[Lab])
var _table2=
DISTINCT('db'[Lab - Copy])
return
CROSSJOIN(
_table1,_table2)
2. Create calculated column.
Column =
COUNTX(
FILTER(ALL('db'),
'db'[Lab]=EARLIER('Table'[Lab])),[the actual formula:CommonProducts])
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
Hi @Aida_Ken ,
I created some data:
Here are the steps you can follow:
1. Create calculated table.
Table =
var _table1=
DISTINCT('db'[Lab])
var _table2=
DISTINCT('db'[Lab - Copy])
return
CROSSJOIN(
_table1,_table2)
2. Create calculated column.
Column =
COUNTX(
FILTER(ALL('db'),
'db'[Lab]=EARLIER('Table'[Lab])),[the actual formula:CommonProducts])
3. Result:
Best Regards,
Liu Yang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly
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!