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
kilala
Resolver I
Resolver I

How to filter certain column in table visualisation and shows no items data as blank

Hi All, in my table, i want to display 3 column, Brand, Warehouse, and PIC.

 

Let say,in Brand I have 10 rows, but only 5 rows is tagged to Warehouse = A. Out of 5 rows, only 2 is being assigned to the PIC.

Hence, in the table i want to show 5 rows, the one that has PIC assigned will show PIC Name. if not, it will be blank. 

 

Expectation:

Brand Warehouse PIC
A 1 kila
B 1 akil
C 1  
D 1  
E 1  

 

Currently, it only shows those that has being assigned.

Reality:

Brand Warehouse PIC
A 1 kila
B 1 akil
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi  @kilala ,

 

Here are the steps you can follow:

1. Create measure.

Flag =
var _count=
COUNTX(
    FILTER(ALL('Table'),
    'Table'[Warehouse]=MAX('Table'[Warehouse])&&[PIC]<>BLANK()),[PIC])
return
IF(
    _count<>BLANK(),1,0)

2. Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_0-1697187470531.png

3. Result:

vyangliumsft_1-1697187470533.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi  @kilala ,

 

Here are the steps you can follow:

1. Create measure.

Flag =
var _count=
COUNTX(
    FILTER(ALL('Table'),
    'Table'[Warehouse]=MAX('Table'[Warehouse])&&[PIC]<>BLANK()),[PIC])
return
IF(
    _count<>BLANK(),1,0)

2. Place [Flag]in Filters, set is=1, apply filter.

vyangliumsft_0-1697187470531.png

3. Result:

vyangliumsft_1-1697187470533.png

 

 

Best Regards,

Liu Yang

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly

kilala
Resolver I
Resolver I

please not that pic for the same warehouse and brand can be more than 1. let say for brand a, warehouse 1, the pic can be kila and ali. so it show in 2 rows.

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