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

calculated column distinct count with condition

Hello everyone,

If have to create a filter based on Flag "Yes" or "No", so that can happen only from calculated column.

below is the scenario :

 

I have table like this :

Customer IDCase NameFlag
1ayes
1bno
1cno
2ayes
2byes
2cno
3ano
3bno
3cno
4ano
4bno
4bno

 

I want filter on Flag for "Yes" or "No"

 

if Flag is "Yes" then output should be like:

 

customer IdCase NameFlag
1aYes
2ayes

 

and if Flag is "No" then output should be like:

 

expected output  
 customer IdCase NameFlag
 3ano
 3bno
 3cno
 4ano
 4bno
 4bno

 

i.e. If Flag is No for all the cases Id should the record should not be shown else it should be shown.

 

if anyone come with solution please help me out.

 

Thank you

 

2 ACCEPTED SOLUTIONS
amitchandak
Super User
Super User

Please find the solution at

https://www.dropbox.com/s/w163vb8y4rjc4ds/overallflag.pbix?dl=0

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @

Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Connect on Linkedin

View solution in original post

v-lid-msft
Community Support
Community Support

Hi @ssharm43 ,

 

We can try to use the following measure in visual filter to meet your requirement:

 

Visual Control = 
IF (
    CALCULATE ( DISTINCTCOUNT ( 'Table'[Flag] ), ALLSELECTED ( 'Table' ) )
        <> CALCULATE ( DISTINCTCOUNT ( 'Table'[Flag] ), ALL ( 'Table' ) ),
    IF (
        SELECTEDVALUE ( 'Table'[Flag] ) = "no"
            && CALCULATE (
                COUNTROWS ( 'Table' ),
                FILTER (
                    CALCULATETABLE(ALLSELECTED('Table'),ALL('Table'[Flag])),
                    'Table'[Customer ID] IN FILTERS ( 'Table'[Customer ID] )
                        && 'Table'[Flag] = "yes"
                )
            ) = 0,
        1,
        IF (
            SELECTEDVALUE ( 'Table'[Flag] ) = "yes"
                && CALCULATE (
                    MIN ( 'Table'[Case Name] ),
                    FILTER (
                        ALLSELECTED('Table'),
                        'Table'[Customer ID] IN FILTERS ( 'Table'[Customer ID] )
                            && 'Table'[Flag] = "yes"
                    )
                )
                    in FILTERS ( 'Table'[Case Name] ),
            1,
            -1
        )
    ),
    1
)

 

1.jpg2.jpg

 


Best regards,

 

Community Support Team _ Dong 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-lid-msft
Community Support
Community Support

Hi @ssharm43 ,

 

We can try to use the following measure in visual filter to meet your requirement:

 

Visual Control = 
IF (
    CALCULATE ( DISTINCTCOUNT ( 'Table'[Flag] ), ALLSELECTED ( 'Table' ) )
        <> CALCULATE ( DISTINCTCOUNT ( 'Table'[Flag] ), ALL ( 'Table' ) ),
    IF (
        SELECTEDVALUE ( 'Table'[Flag] ) = "no"
            && CALCULATE (
                COUNTROWS ( 'Table' ),
                FILTER (
                    CALCULATETABLE(ALLSELECTED('Table'),ALL('Table'[Flag])),
                    'Table'[Customer ID] IN FILTERS ( 'Table'[Customer ID] )
                        && 'Table'[Flag] = "yes"
                )
            ) = 0,
        1,
        IF (
            SELECTEDVALUE ( 'Table'[Flag] ) = "yes"
                && CALCULATE (
                    MIN ( 'Table'[Case Name] ),
                    FILTER (
                        ALLSELECTED('Table'),
                        'Table'[Customer ID] IN FILTERS ( 'Table'[Customer ID] )
                            && 'Table'[Flag] = "yes"
                    )
                )
                    in FILTERS ( 'Table'[Case Name] ),
            1,
            -1
        )
    ),
    1
)

 

1.jpg2.jpg

 


Best regards,

 

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

Thank you all for your valuable time and comments on my requirment.

Both of the solution solved my issue.

 

Thank you again for such great community help.

amitchandak
Super User
Super User

Please find the solution at

https://www.dropbox.com/s/w163vb8y4rjc4ds/overallflag.pbix?dl=0

Appreciate your Kudos. In case, this is the solution you are looking for, mark it as the Solution.
In case it does not help, please provide additional information and mark me with @

Thanks. My Recent Blogs -Decoding Direct Query - Time Intelligence, Winner Coloring on MAP, HR Analytics, Power BI Working with Non-Standard TimeAnd Comparing Data Across Date Ranges
Connect on Linkedin

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.