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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
puru85
Helper II
Helper II

How to Display an Empty Table Chart When Filter is Unset

Hello Experts,

I have a Table Chart and Filter Chart , Refer to below screenshot:

puru85_0-1724330362822.png

 

 

Current Behavior:
When the Phone Number Search Filter is empty, the Table Chart displays all the data.


Required Behavior:
I need the Table Chart to be empty when the Phone Number Search Filter is not set.


Attached is my PBIX:

FamilyKey.pbix

Could anyone guide me on how to achieve this? Any help would be greatly appreciated!


Thank you!



1 ACCEPTED SOLUTION
AnkitaaMishra
Super User
Super User

hi @puru85 , hope you are doing well.

please create below measure : 

Filterselected =
IF(
    CALCULATE(ISFILTERED('Family Members Table'[Phone Numbers]),ALLSELECTED('Family Members Table'[Phone Numbers])),
    1,
    0
)
Use above measure to filter for your table visual and set it to 1 as shown below : 
AnkitaaMishra_0-1724331466897.png


Please let me know if this works for you else share more details about your requirement.

 

Thanks,

Ankita

View solution in original post

2 REPLIES 2
puru85
Helper II
Helper II

@AnkitaaMishra 

Thank you for Quick Solution 🙂 

AnkitaaMishra
Super User
Super User

hi @puru85 , hope you are doing well.

please create below measure : 

Filterselected =
IF(
    CALCULATE(ISFILTERED('Family Members Table'[Phone Numbers]),ALLSELECTED('Family Members Table'[Phone Numbers])),
    1,
    0
)
Use above measure to filter for your table visual and set it to 1 as shown below : 
AnkitaaMishra_0-1724331466897.png


Please let me know if this works for you else share more details about your requirement.

 

Thanks,

Ankita

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

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

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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