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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
Tito
Helper IV
Helper IV

Add filter

Hello everyone,

I need a filter to see the names which their number is greater than 1.
If the sum of the number is empty or equal to 1, then " empty or equal to 1" otherwise "greater than 1"

 

Raw data

IDNameStatusGroup
1WilliamYesA
2WilliamNoB
3WilliamYesC
4MaxNoA
5MaxYesC
6LucaYesD
7MarvinYesA
8MarvinNoB
9MaxNoB
10MaxYesD

 

Tito_0-1750757926598.png

 

 

Result:

  • Tabelle
Name# Yes# NoSum
William213
Max224
Luca1 1
Marvin112

 

Tito_1-1750757999277.png

 

 

  • Slicer:
    Empty or equal to 1
    greater than 1

Thank you

Tito

1 ACCEPTED SOLUTION
danextian
Super User
Super User

Hi @Tito 

Assuming your definition of number is the  count of records per name, create this calculated column.

Slicer Column =
VAR _CountPerName =
    CALCULATE ( COUNTROWS ( 'table' ), ALLEXCEPT ( 'table', 'table'[name] ) )
RETURN
    IF ( _CountPerName > 1, "greater than 1", "Empty or equal to 1" )




Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

View solution in original post

3 REPLIES 3
danextian
Super User
Super User

Hi @Tito 

Assuming your definition of number is the  count of records per name, create this calculated column.

Slicer Column =
VAR _CountPerName =
    CALCULATE ( COUNTROWS ( 'table' ), ALLEXCEPT ( 'table', 'table'[name] ) )
RETURN
    IF ( _CountPerName > 1, "greater than 1", "Empty or equal to 1" )




Dane Belarmino | Microsoft MVP | Proud to be a Super User!

Did I answer your question? Mark my post as a solution!


"Tell me and I’ll forget; show me and I may remember; involve me and I’ll understand."
Need Power BI consultation, get in touch with me on LinkedIn or hire me on UpWork.
Learn with me on YouTube @DAXJutsu or follow my page on Facebook @DAXJutsuPBI.

Hi @danextian ,

 

Thank you very much. I have adjusted your measure:

Slicer Column =
VAR _CountPerName =
    CALCULATE ( DISTINCTCOUNT( 'table' ), ALLEXCEPT ( 'table', 'table'[name] ) )
RETURN
    IF ( _CountPerName > 1, "greater than 1", "Empty or equal to 1" )
Tito
Helper IV
Helper IV

help

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors