cancel
Showing results for 
Search instead for 
Did you mean: 
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
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

MPPC 2023 PBI Carousel

Power Platform Conference-Power BI and Fabric Sessions

Join us Oct 1 - 6 in Las Vegas for the Microsoft Power Platform Conference.

Top Solution Authors