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
Darren204
Frequent Visitor

Measure to Show Customers who Have only One Order and of a Specific Type

Hi I need to create a measure that will look up customers where they have only one order open for a specific service type. ie. Where this service type is the ONLY order they have.

 

Using my table below, I'd like to have a measure that returns only Michael's record when looking for customers that ONLY have Boogie 🙂

 

CustomerService typeOrder Number
TitoSunshine123
JermaineMoonlight456
JermaineGood Times789
JermaineBoogie111
MichaelBoogie222

 

Probaly dead simple but I'm having a block...

 

Appreciate the help.

1 ACCEPTED SOLUTION
v-cherch-msft
Employee
Employee

Hi @Darren204 

Please check below measure.You may use it in visual level filter to filter the table.

filter =
VAR count1 =
    CALCULATE ( COUNT ( Table2[Customer] ), ALLEXCEPT ( Table2, Table2[Customer] ) )
VAR count2 =
    CALCULATE (
        COUNT ( Table2[Customer] ),
        ALLEXCEPT ( Table2, Table2[Service type] )
    )
RETURN
    IF ( count1 = 1 && count2 > 1, 1 )

a1.png

Regards,

Community Support Team _ Cherie Chen
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-cherch-msft
Employee
Employee

Hi @Darren204 

Please check below measure.You may use it in visual level filter to filter the table.

filter =
VAR count1 =
    CALCULATE ( COUNT ( Table2[Customer] ), ALLEXCEPT ( Table2, Table2[Customer] ) )
VAR count2 =
    CALCULATE (
        COUNT ( Table2[Customer] ),
        ALLEXCEPT ( Table2, Table2[Service type] )
    )
RETURN
    IF ( count1 = 1 && count2 > 1, 1 )

a1.png

Regards,

Community Support Team _ Cherie Chen
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.