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
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
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