Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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 |
Solved! Go to Solution.
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.
3. Result:
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
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.
3. Result:
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
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.
User | Count |
---|---|
97 | |
73 | |
69 | |
43 | |
23 |