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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
alevandenes
Helper IV
Helper IV

Match and count categories

Hi community,

 

I have a problem that i dont know how to approach. I hope you can help me out with solving it.

I would like for a count to be set up when specific characteristics are matched.

in the example below, i would like for PowerBI to tell me that 2 orders are completely matching.

 

order #ProductColoursize
1342526ShoesRed37
2342634ShoesRed37
3476529BeltRedSmall

 

Any ideas?

i was thinking of using keys for the different combinations, but they could be infinite

 

Thank you in advance,
Alessandra

1 ACCEPTED SOLUTION
DataInsights
Super User
Super User

Hi @alevandenes,

 

Try this measure:

 

Match Count = 
VAR vProduct =
    MAX ( Orders[Product] )
VAR vColour =
    MAX ( Orders[Colour] )
VAR vSize =
    MAX ( Orders[size] )
VAR vTable =
    FILTER (
        ALLSELECTED ( Orders ),
        Orders[Product] = vProduct
            && Orders[Colour] = vColour
            && Orders[size] = vSize
    )
VAR vResult =
    COUNTROWS ( vTable )
RETURN
    vResult

 

DataInsights_1-1613255540537.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

A simple solution would be to create a calculated column formula to concatenate product, colour and size.  Then write a measure to do a distincount of the entries in the new column.

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
DataInsights
Super User
Super User

Hi @alevandenes,

 

Try this measure:

 

Match Count = 
VAR vProduct =
    MAX ( Orders[Product] )
VAR vColour =
    MAX ( Orders[Colour] )
VAR vSize =
    MAX ( Orders[size] )
VAR vTable =
    FILTER (
        ALLSELECTED ( Orders ),
        Orders[Product] = vProduct
            && Orders[Colour] = vColour
            && Orders[size] = vSize
    )
VAR vResult =
    COUNTROWS ( vTable )
RETURN
    vResult

 

DataInsights_1-1613255540537.png

 





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.