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

Filtering help

Hello

 

So i'm doing some analysis on my company's clients and some of them have projects with multiple sectors within our company.

 

I want to filter my data to show clients who have projects with one particular sector.

 

Thanks in advance.

1 ACCEPTED SOLUTION
v-yulgu-msft
Employee
Employee

Hi @SDigital,

 

Based on my understanding, you want to display those clients who have only one project with only one sector, right?

 

If so, you can create a measure similar to below, add this measure to visual level filter and set its value to 1.

check1 =
IF (
    CALCULATE (
        DISTINCTCOUNT ( Sheet1[Project] ),
        ALLEXCEPT ( Sheet1, Sheet1[Client] )
    )
        = 1
        && CALCULATE (
            DISTINCTCOUNT ( Sheet1[Sector] ),
            ALLEXCEPT ( Sheet1, Sheet1[Client], Sheet1[Project] )
        )
            = 1,
    1,
    0
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
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

2 REPLIES 2
v-yulgu-msft
Employee
Employee

Hi @SDigital,

 

Based on my understanding, you want to display those clients who have only one project with only one sector, right?

 

If so, you can create a measure similar to below, add this measure to visual level filter and set its value to 1.

check1 =
IF (
    CALCULATE (
        DISTINCTCOUNT ( Sheet1[Project] ),
        ALLEXCEPT ( Sheet1, Sheet1[Client] )
    )
        = 1
        && CALCULATE (
            DISTINCTCOUNT ( Sheet1[Sector] ),
            ALLEXCEPT ( Sheet1, Sheet1[Client], Sheet1[Project] )
        )
            = 1,
    1,
    0
)

1.PNG

 

Best regards,

Yuliana Gu

Community Support Team _ Yuliana Gu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

Hi @v-yulgu-msft

 

Thanks for answering my query. This formula is almost there but i want to show clients that have one or more projects with one sector.

 

Thanks again!

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.