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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
mvgust
Helper III
Helper III

Set records filter based on specific values

I need to set a True/False column flag when the values in a table match the following:

 

IDs are the same and the Code=PTX

 

So in the below example, I would like a flag column which would indicate true on the highlighted records.

 

code-ptx.png

 

Thank you!

 

 

1 ACCEPTED SOLUTION

Hi @mvgust ,

I can also get the result using my previous formula:

fl.png

Attached my sample file that you can refer, please check and try it: Set records filter based on specific values.pbix

 

Best Regards,
Yingjie Li

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

3 REPLIES 3
v-yingjl
Community Support
Community Support

Hi @mvgust ,

You can create a calcualte column like this:

Flag =
VAR _count =
    CALCULATE (
        COUNT ( 'Table'[Id] ),
        FILTER (
            ALL ( 'Table' ),
            'Table'[Id] = EARLIER ( 'Table'[Id] )
                && 'Table'[Code] = "PTX"
        )
    )
RETURN
    IF ( _count = 1, TRUE (), FALSE () )

Result:

flag.png

 

Best Regards,
Yingjie Li

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

This is very close to what I need, however I do have the following scenario where the flag isn't catching a record:

 

PTX flag.png

 

Thank you.

Hi @mvgust ,

I can also get the result using my previous formula:

fl.png

Attached my sample file that you can refer, please check and try it: Set records filter based on specific values.pbix

 

Best Regards,
Yingjie Li

If this post helps then please consider Accept it as the solution to help the other members find it more quickly.

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.