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
Anonymous
Not applicable

Advanced filtering of table 'Is blank' not working

Hi there, Please can someone help me resolve the following?

I have two simple tables with four entries in the student Name table (S1-S4) and five entries in the Event table (E1-E5). These tables are Crossjoined into a new table to show all 20 possible options of Students and Events. The final table contains a Log of Students who attended Events.

I then created Columns in both the Crossjoin and Log tables of Event&Student called Concatenate.

A Table visual was used to display all 20 possible options from the Crossjoin and those listed in the Log table which shows up perfectly. If I use the Advanced Filter to choose when the Log.Concatenate field is non-blank, the correct 6 choices appear in the Table visual. However, when I choose the reverse (which is what I need to show the options that are yet to be completed) and use the Advanced Filter 'Is blank' everything disappears from the Table visual. What am I doing wrong?

Thanks in advance.....Steve

Student Events.pbix

Student events.xlsx

1 ACCEPTED SOLUTION
Anonymous
Not applicable

@Anonymous  - The reason for the result is straightforward - the table contains no blank values, so filtering to only show blank values removes everything.

 

A solution:

1. Create a new Measure:

Find Blanks = 
var a = FILTER(
    'Cross Join Table',
    COUNTROWS(RELATEDTABLE('Log')) = 0
)
return COUNTROWS(a)

2. You can use this measure in your table to limit rows, but you'll need to remove the column from log table, and also don't "Show Items with No Data"

 

Hope this helps,

Nathan

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

@Anonymous  - The reason for the result is straightforward - the table contains no blank values, so filtering to only show blank values removes everything.

 

A solution:

1. Create a new Measure:

Find Blanks = 
var a = FILTER(
    'Cross Join Table',
    COUNTROWS(RELATEDTABLE('Log')) = 0
)
return COUNTROWS(a)

2. You can use this measure in your table to limit rows, but you'll need to remove the column from log table, and also don't "Show Items with No Data"

 

Hope this helps,

Nathan

Anonymous
Not applicable

That is brilliant, thank you ever so much.

 

Steve

Helpful resources

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

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 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