March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch 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! |
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
115 | |
76 | |
57 | |
52 | |
44 |
User | Count |
---|---|
165 | |
116 | |
63 | |
57 | |
50 |