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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Filter table using slicer

I am working on a practice report to try and get up to speed with Power BI. I have a table generated from an input file that has information about people.

 

The table has 4 columns, and one of these columns is "Age". The value in this column for any "person" is either their age as an integer, or blank, meaning their age is not included.

 

I need to have a slicer with the options "ageIncluded" and "ageNotIncluded" that filters the table based on whether a persons age is included or not. I know that for this I can make use of checking for blank/not blank values, but how can I created this slicer that will filter the table when an option is selected?

 

Any help is much appreciated. Thanks! 

1 ACCEPTED SOLUTION

@Anonymous

 

You can try the following:

Column = IF(LEN('Table'[Age]) > 0,"AgeIncluded", "AgeNotIncluded")

View solution in original post

4 REPLIES 4
themistoklis
Community Champion
Community Champion

@Anonymous

 

Create a new column and NOT a measure and put the following:

 

Column = IF(ISBLANK('Table'[Age]),"AgeNotIncluded","AgeIncluded")
Then add it as a slicer in the report
Anonymous
Not applicable

Thank you for your reply! This definitely seems like it should work, but for some reason I get only the "AgeIncluded" option in the slicer, and when I click it the table does not get filtered 😞

@Anonymous

 

You can try the following:

Column = IF(LEN('Table'[Age]) > 0,"AgeIncluded", "AgeNotIncluded")
Anonymous
Not applicable

Thank you very much for your help! 🙂

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

Check out the February 2026 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.