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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
Data looks like this:
DispatchID Commodity
12345 top
12345 case
12345 bottom
12345 side
9876 top
9876 bottom
9876 arm
I want to filter out bottom and side, so that it looks like this:
DispatchID Commodity
12345 top|case
9876 top|arm
Current formula that is listing all parts (too many):
Solved! Go to Solution.
@sfsamperi13 , you may try such a measure
All Part List =
CONCATENATEX (
FILTER (
VALUES ( 'FMP Export'[Commodity] ),
NOT ( 'FMP Export'[Commodity] IN { "bottom", "side" } )
),
'FMP Export'[Commodity],
" | "
)
| Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
@sfsamperi13 , Create a measure like
concatenatex ( filter ( 'FMP Export', NOT( 'FMP Export'[Commodity] IN { "bottom", "side" } )),'FMP Export'[Commodity]," | ")
@sfsamperi13 , you may try such a measure
All Part List =
CONCATENATEX (
FILTER (
VALUES ( 'FMP Export'[Commodity] ),
NOT ( 'FMP Export'[Commodity] IN { "bottom", "side" } )
),
'FMP Export'[Commodity],
" | "
)
| Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension! |
DAX is simple, but NOT EASY! |
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 52 | |
| 45 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 108 | |
| 108 | |
| 39 | |
| 33 | |
| 26 |