<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: DAX To Split Measure Text into Separate Rows in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298673#M56689</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="6799" data-lia-user-login="OwenAuger" class="lia-mention lia-mention-user"&gt;OwenAuger&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for helping. Apologies if I wasn't clear, but I was hoping to split the values into separate rows, so that each row could be used on their own. I know this is easy to do in power query with the 'split by delimiter' functionality, but I don't know if this is reproduceable in DAX.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Product IDs&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;101&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;102&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;406&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;407&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jess&lt;/P&gt;</description>
    <pubDate>Mon, 24 Jan 2022 13:51:30 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-01-24T13:51:30Z</dc:date>
    <item>
      <title>DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298395#M56678</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm having trouble writing DAX to perform what I need. I have a measure that creates a list of the values selected from a filter for a product ID:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Filtered Product IDs = CONCATENATEX ( VALUES ( Data[product_id] ) , [product_id] , ",")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, the output of this is a list of values split by comma:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Filtered Product IDs&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100, 101, 102, 406, 407, 500&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to split this into separate rows, with the delimiter being the comma:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Product IDs&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;101&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;102&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;406&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;407&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've seen some other similar issues, which have been solved using PATHITEM, but I can't get it to work for my issue.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help would by much appreciated, thanks.&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 11:36:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298395#M56678</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-24T11:36:51Z</dc:date>
    </item>
    <item>
      <title>Re: DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298451#M56680</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt; , Visual have product_id as ungrouped column then only this will work &lt;/P&gt;
&lt;P&gt;or simply product_id unsummarized&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 12:06:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298451#M56680</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-01-24T12:06:22Z</dc:date>
    </item>
    <item>
      <title>Re: DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298470#M56682</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can use the "Line feed" character &lt;FONT face="courier new,courier" size="2"&gt;&lt;STRONG&gt;UNICHAR(10)&lt;/STRONG&gt;&lt;/FONT&gt; if you require text split across multiple lines.&lt;/P&gt;
&lt;P&gt;I recall in the past that line feeds didn't always display correctly, but they appear to work now for values within card and table visuals at least.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sample measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Filtered Product IDs =
CONCATENATEX (
    VALUES ( Data[product_id] ),
    Data[product_id],
    "," &amp;amp; UNICHAR ( 10 )
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;Regards,&lt;/P&gt;
&lt;P&gt;Owen&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 12:20:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298470#M56682</guid>
      <dc:creator>OwenAuger</dc:creator>
      <dc:date>2022-01-24T12:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298673#M56689</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="6799" data-lia-user-login="OwenAuger" class="lia-mention lia-mention-user"&gt;OwenAuger&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for helping. Apologies if I wasn't clear, but I was hoping to split the values into separate rows, so that each row could be used on their own. I know this is easy to do in power query with the 'split by delimiter' functionality, but I don't know if this is reproduceable in DAX.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Product IDs&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;100&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;101&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;102&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;406&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;407&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;500&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Jess&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 13:51:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298673#M56689</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-24T13:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298733#M56692</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Your problem sounds interesting, but I'm not sure that I understand it correctly:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;According to your measure, you have a table "Data" with a column "product_id". And your measure refers to it.&lt;/P&gt;&lt;P&gt;In the end, you want to create a column with product IDs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Why do you use the measure at all?&lt;/P&gt;&lt;P&gt;Why don't you just filter on the given column with the product_id?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm sure, I'm misunderstanding something here.&lt;/P&gt;&lt;P&gt;Please give me a hint.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 14:26:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2298733#M56692</guid>
      <dc:creator>CerebusBI</dc:creator>
      <dc:date>2022-01-24T14:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2299332#M56747</link>
      <description>&lt;P&gt;Hi Jess&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ah I see, sorry for the confusion at my end.&lt;/P&gt;
&lt;P&gt;I see others are already in the discussion so you may get an answer from someone else anyway &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My main question is: where do you need to use the column of Product IDs?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;If you need it as part of a measure, &lt;STRONG&gt;VALUES ( Data[product_id] )&lt;/STRONG&gt;&amp;nbsp;already produces this result (you could also use &lt;STRONG&gt;DISTINCT&lt;/STRONG&gt; or some other functions). No need to concatenate and split again.&lt;/LI&gt;
&lt;LI&gt;If you need it as part of a calculated table, again &lt;STRONG&gt;VALUES ( Data[product_id] )&lt;/STRONG&gt; already produces this result.&amp;nbsp;&lt;/LI&gt;
&lt;LI&gt;If you want to see product_id values on rows of a table visual (or similar), just place product_id as a field in the visual.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Having said all that, if for some reason you need to split a comma-delimited list in DAX, this sort of expression will do it (with &amp;lt;Comma Separated List&amp;gt; replaced by an appropriate expression):&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;VAR CommaSeparatedList =
    &amp;lt;Comma Separated List&amp;gt;
VAR BarSeparatedList =
    SUBSTITUTE ( CommaSeparatedList, ",", "|" )
VAR Length =
    PATHLENGTH ( BarSeparatedList )
VAR Result =
    SELECTCOLUMNS (
        GENERATESERIES ( 1, Length ),
        "Product ID", PATHITEM ( BarSeparatedList, [Value] )
    )
RETURN
    Result&lt;/LI-CODE&gt;
&lt;P&gt;&lt;A href="https://dax.do/DRD13FNywDQ73Y/" target="_self"&gt;&amp;nbsp;Example on dax.do.&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 20:26:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2299332#M56747</guid>
      <dc:creator>OwenAuger</dc:creator>
      <dc:date>2022-01-24T20:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2301402#M56846</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="279066" data-lia-user-login="CerebusBI" class="lia-mention lia-mention-user"&gt;CerebusBI&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I don't think I was as clear as I thought I was, sorry! Basically, I have a slicer for product id, and I'd like to be able to have whichever values are selected in this slicer as separate rows in a measure. This formula:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;CONCATENATEX ( VALUES ( Data[product_id] ) , [product_id] , ",")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;gets me halfway there, as it shows the product IDs selected in the slicer, but all in one row, which makes using this data difficult.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I this makes it a bit clearer, and thanks for you help!&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 15:23:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2301402#M56846</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-25T15:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2301420#M56848</link>
      <description>&lt;P&gt;Thanks for looking further into this! Basically, the product ID's I'd like to split are dynamically filtered by a product ID slicer. So, whichever product IDs someone selects from the slicer will appear in this measure. Whenever I try to use something like VALUES, or DISTINCT, I get the error: "A table of multiple values was selected where a single value was expected".&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Your DAX is exactly what I'm looking for, thanks, but unfortunately, I get this same multiple values error when I try it in PBI. I'm probably just missing something obvious!&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 15:33:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2301420#M56848</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-25T15:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2301544#M56854</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;A measure always needs to have a scalar result: A number, a text, a date...&lt;/P&gt;&lt;P&gt;but never a table or a list.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I agree with &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="6799" data-lia-user-login="OwenAuger" class="lia-mention lia-mention-user"&gt;OwenAuger&lt;/a&gt;: maybe we need to understand what's your raw data and what you want to see in your report / visual.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could it be possible that putting the raw Data[product_id] into the Slicer and also into the table column?&lt;/P&gt;&lt;P&gt;Then choosing some Ids in the slicer would also filter the table accordingly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 16:31:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2301544#M56854</guid>
      <dc:creator>CerebusBI</dc:creator>
      <dc:date>2022-01-25T16:31:11Z</dc:date>
    </item>
    <item>
      <title>Re: DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2312778#M57545</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="279066" data-lia-user-login="CerebusBI" class="lia-mention lia-mention-user"&gt;CerebusBI&lt;/a&gt;&amp;nbsp;Ah ok, I was worried that might be the case. I'll go back to the drawing board and see if I can design what I need differently. Thanks so much for your help&lt;/P&gt;</description>
      <pubDate>Tue, 01 Feb 2022 10:41:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/2312778#M57545</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-02-01T10:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: DAX To Split Measure Text into Separate Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/3290039#M122443</link>
      <description>&lt;P&gt;Hey! I am having this exact problem.&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="6799" data-lia-user-login="OwenAuger" class="lia-mention lia-mention-user"&gt;OwenAuger&lt;/a&gt;&amp;nbsp; the options you have given are correct. But imagine a user is selecting multiple filters from a filter and I want to get the names of all the selected filters, IN THE CORRECT SEQUENCE, as rows.&lt;BR /&gt;&lt;BR /&gt;Anonymous&lt;/a&gt;&amp;nbsp; is correct in that if we use VALUES or DISTINCT, the error message &lt;SPAN&gt;"A table of multiple values was selected where a single value was expected" appears. However, the DAX in his original post&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Filtered Product IDs = CONCATENATEX ( VALUES ( Data[product_id] ) , [product_id] , ",")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;does, as he says "take him halfway there" by providing him with that list of selected values from the filters in the right order. But say, I want to display that list in the form of rows or as a numbered list &lt;U&gt;in the sequence of selections made by the user&lt;/U&gt;. That is where I am starting to struggle as well.&lt;BR /&gt;&lt;BR /&gt;Although&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="6799" data-lia-user-login="OwenAuger" class="lia-mention lia-mention-user"&gt;OwenAuger&lt;/a&gt;&amp;nbsp;'s solution of just dragging that field on a new visual does show the selected values as a list BUT it does that in an alphabetical order NOT in the order of selection.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Hope this use case helps visualize where this might be useful.&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 04:34:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-To-Split-Measure-Text-into-Separate-Rows/m-p/3290039#M122443</guid>
      <dc:creator>rushi</dc:creator>
      <dc:date>2023-06-19T04:34:49Z</dc:date>
    </item>
  </channel>
</rss>

