Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register 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! |
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
64 | |
63 | |
52 | |
36 | |
36 |
User | Count |
---|---|
81 | |
71 | |
58 | |
45 | |
44 |