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

To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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
September Power BI Update Carousel

Power BI Monthly Update - September 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Kudoed Authors