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
gracechong
Helper I
Helper I

Exclude lines based on multiple criteria

Hi,

 

With below as sample data, my goal is to exlude the first line in sample data shown; whereby the multiple criteria for excluding is:

 

Line Type = Actual

Project Type = Funded

Exception = Yes

Cost A + Cost B = 0

 

I did try to modify based on what I can understand from other question threads but I don't think I'm doing it right.

Can someone help to point out what is the mistake in the below measure?

 

CountryProjectManagerCost ACost BLine TypeProject TypeException
Japan1234562123500ActualFundedYes
Japan12345621235500000ProjectionFundedYes
Vietnam4455666677630000060000ProjectionNot FundedYes
South Korea7773337788900ActualFundedNo
Bhutan33556623467700000ActualFundedYes

 

Measure =
VAR Summ =
    SUMMARIZE (
        data,
        data[Country],
        data[Project],
        data[Manager],
        data[Line Type],
        data[Project Type],
 data[Exception],
        "A", [Cost A],
        "B", [Cost B]
    )
RETURN
 
    COUNTROWS (
        FILTER (
            Summ,
            AND( data[Line Type] = "Actual", data[Project Type] = "Funded", data[Exception] = "Yes")
                && OR ( [A] <> 0, [B] <> 0 )
        )
    )

1 ACCEPTED SOLUTION
Fowmy
Super User
Super User

@gracechong

You can create this measure and assign it to the table visual in the filter pane and set it to 1:

New Measure = 
 IF(
     MAX(data[Line Type]) = "Actual" && 
     MAX(data[Project Type]) = "Funded" && 
     MAX(data[Exception]) = "Yes" && 
     ( MAX(data[Cost A]) <> 0, MAX(data[Cost B] <> 0 )),
     1,
     0
)

________________________

If my answer was helpful, consider Accepting it as the solution to help other members find it

Click the Thumbs-Up icon if you like this answer 🙂

Youtube Linkedin

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

View solution in original post

1 REPLY 1
Fowmy
Super User
Super User

@gracechong

You can create this measure and assign it to the table visual in the filter pane and set it to 1:

New Measure = 
 IF(
     MAX(data[Line Type]) = "Actual" && 
     MAX(data[Project Type]) = "Funded" && 
     MAX(data[Exception]) = "Yes" && 
     ( MAX(data[Cost A]) <> 0, MAX(data[Cost B] <> 0 )),
     1,
     0
)

________________________

If my answer was helpful, consider Accepting it as the solution to help other members find it

Click the Thumbs-Up icon if you like this answer 🙂

Youtube Linkedin

Did I answer your question? Mark my post as a solution! and hit thumbs up


Subscribe and learn Power BI from these videos

Website LinkedIn PBI User Group

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.