Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Aida_Ken
New Member

count common value for columns and rows

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])
)

 

20230604_194715.jpg

1 ACCEPTED SOLUTION
v-yangliu-msft
Community Support
Community Support

Hi  @Aida_Ken ,

I created some data:

vyangliumsft_0-1686027548415.png

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])

vyangliumsft_1-1686027548417.png

3. Result:

vyangliumsft_2-1686027587733.png

 

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

View solution in original post

1 REPLY 1
v-yangliu-msft
Community Support
Community Support

Hi  @Aida_Ken ,

I created some data:

vyangliumsft_0-1686027548415.png

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])

vyangliumsft_1-1686027548417.png

3. Result:

vyangliumsft_2-1686027587733.png

 

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.