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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Filtering Visual to only show Accounts with two Criteria

Hello,

 

I am trying to throw together a quick matrix to identify accounts that may have switched their billing method. Below is a snapshot of the matrix I have:

mramstead1_0-1678902602461.png

 

The goal is to create a measure that I could throw onto the visual as a filter that would keep any accounts that have both Agency and Direct BillModes while removing the others that only include one. I've tried different various different DAX formulas to try and solve this to no avail. 

 

For extra clarity (in case it matters), each Account will have anywhere from 1-50+ lines that get combined into either Direct or Agency BillMode.

 

Any help on this is greatly appreciated!

1 ACCEPTED SOLUTION
KNP
Super User
Super User

It's a little difficult to be certain with the info provided, can I suggest you post some sample data next time that closely represents your actual data.

 

Something like this may work. It may need an additional step to SUMMARIZE the mode if I'm misunderstanding the data.

Let me know if you have questions.

 

Filter = 
VAR vfilter =
    FILTER (
        SUMMARIZE (
            'Table',
            'Table'[Account],
            "cr",
                COUNT ( 'Table'[Account] ) > 1
        ),
        [cr]
            = TRUE ()
    )
VAR vAccounts =
    SUMMARIZE (
        vfilter,
        'Table'[Account]
    )
RETURN
    IF (
        MIN ( 'Table'[Account] )
            IN vAccounts,
        1
    )
Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
xOIEmaj

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
image
fabric-SUbadge
Proud to be a Super User!

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Thank you! I didn't post the file due to client data existing within it but I will try and make sample data in the future.

Ashish_Mathur
Super User
Super User

Hi,

So in the visual that you have shared, only the first and last accounts should appear in the result.  Am i correct?  If yes, then share the download link of the PBI file.


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

It's a little difficult to be certain with the info provided, can I suggest you post some sample data next time that closely represents your actual data.

 

Something like this may work. It may need an additional step to SUMMARIZE the mode if I'm misunderstanding the data.

Let me know if you have questions.

 

Filter = 
VAR vfilter =
    FILTER (
        SUMMARIZE (
            'Table',
            'Table'[Account],
            "cr",
                COUNT ( 'Table'[Account] ) > 1
        ),
        [cr]
            = TRUE ()
    )
VAR vAccounts =
    SUMMARIZE (
        vfilter,
        'Table'[Account]
    )
RETURN
    IF (
        MIN ( 'Table'[Account] )
            IN vAccounts,
        1
    )
Have I solved your problem?
Please click Accept as Solution so I don't keep coming back to this post, oh yeah, others may find it useful also ;).
xOIEmaj

If you found this post helpful, please give Kudos.
It gives me a sense of instant gratification and, if you give me Kudos enough times, magical unicorns will appear on your screen.
If you find my signature vaguely amusing, please give Kudos.
image
fabric-SUbadge
Proud to be a Super User!

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors
Top Kudoed Authors