Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
2 years ago
Solved

Struggling to remove filters

With the following data:


table1:

col1col2col3
aX1
aY2
aZ3
bZ1
bY2

 

table2:

col4col5
1Q
2R
3S

 

joined 1 to many on the numeric column:

My desired outcome, with the final column being the count of occurrences in column1:

col1co2col5measure
aXQ3
aYR3
aZS3
bZQ2
bYR2

 

I would also like to filter by column5, so if the user pics Q the following outcome is shown:

col1col2col5measure
aXQ3
bZQ2

 

I have tried a few methods with ALLEXCEPT, ALLSELECTED and REMOVEFILTERS but an struggling to get it correct.

 
Can anyone help?
 
Thanks.
  • Something like this might work for you...

    Measure = 
    COUNTROWS(
        FILTER(ALL(TableOne), TableOne[col1] = SELECTEDVALUE(TableOne[col1]))
    )
  • Anonymous's avatar
    Anonymous
    2 years ago

    Hi Anonymous ,

    May I ask if your problem has been solved. If the above reply was helpful, you may consider marking it as solution. If the problem is not yet solved, please follow the steps below:

    Add new measure:

    count =
    CALCULATE (
        COUNTROWS ( 'Table1' ),
        FILTER ( ALL ( 'Table1' ), 'Table1'[col1] = SELECTEDVALUE ( Table1[col1] ) )
    )
    

     

    Final output:

     

    How to Get Your Question Answered Quickly - Microsoft Fabric Community

    If it does not help, please provide more details with your desired out put and pbix file without privacy information.

     

    Best Regards,

    Ada Wang

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

2 Replies

  • Something like this might work for you...

    Measure = 
    COUNTROWS(
        FILTER(ALL(TableOne), TableOne[col1] = SELECTEDVALUE(TableOne[col1]))
    )
  • Anonymous's avatar
    Anonymous
    Not applicable

    Hi Anonymous ,

    May I ask if your problem has been solved. If the above reply was helpful, you may consider marking it as solution. If the problem is not yet solved, please follow the steps below:

    Add new measure:

    count =
    CALCULATE (
        COUNTROWS ( 'Table1' ),
        FILTER ( ALL ( 'Table1' ), 'Table1'[col1] = SELECTEDVALUE ( Table1[col1] ) )
    )
    

     

    Final output:

     

    How to Get Your Question Answered Quickly - Microsoft Fabric Community

    If it does not help, please provide more details with your desired out put and pbix file without privacy information.

     

    Best Regards,

    Ada Wang

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