<?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: Join two selected values of a column with &amp;quot;and&amp;quot; in the middle in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Join-two-selected-values-of-a-column-with-quot-and-quot-in-the/m-p/3217468#M117498</link>
    <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp; it works perfectly!&lt;/P&gt;</description>
    <pubDate>Wed, 03 May 2023 09:20:30 GMT</pubDate>
    <dc:creator>Luzadriana255</dc:creator>
    <dc:date>2023-05-03T09:20:30Z</dc:date>
    <item>
      <title>Join two selected values of a column with "and" in the middle</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Join-two-selected-values-of-a-column-with-quot-and-quot-in-the/m-p/3217405#M117494</link>
      <description>&lt;P&gt;Hello dear community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using the following Formula to join with "and" two values of a column, if both of them are selected&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Selected order= &lt;/SPAN&gt;&lt;SPAN&gt;CONCATENATEX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;('Type'[Order]),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; 'Type'[Order],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;" and "&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; 'Type'[Order],&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ASC&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I get the following:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"and individual and groups"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I do not want "and" to appear in the beginning, I just want it to appear in the middle., like this:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"individual and groups"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Could you please help me find a way to correct this mistake? thank you!!&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 03 May 2023 08:53:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Join-two-selected-values-of-a-column-with-quot-and-quot-in-the/m-p/3217405#M117494</guid>
      <dc:creator>Luzadriana255</dc:creator>
      <dc:date>2023-05-03T08:53:48Z</dc:date>
    </item>
    <item>
      <title>Re: Join two selected values of a column with "and" in the middle</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Join-two-selected-values-of-a-column-with-quot-and-quot-in-the/m-p/3217460#M117497</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="485918" data-lia-user-login="Luzadriana255" class="lia-mention lia-mention-user"&gt;Luzadriana255&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;Selected order =
CONCATENATEX (
    FILTER (
        VALUES ( 'Type'[Order] ),
        'Type'[Order] &amp;lt;&amp;gt; BLANK ()
            &amp;amp;&amp;amp; 'Type'[Order] &amp;lt;&amp;gt; ""
    ),
    'Type'[Order],
    " and ",
    'Type'[Order], ASC
)&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 03 May 2023 09:13:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Join-two-selected-values-of-a-column-with-quot-and-quot-in-the/m-p/3217460#M117497</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-05-03T09:13:54Z</dc:date>
    </item>
    <item>
      <title>Re: Join two selected values of a column with "and" in the middle</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Join-two-selected-values-of-a-column-with-quot-and-quot-in-the/m-p/3217468#M117498</link>
      <description>&lt;P&gt;Thank you so much&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp; it works perfectly!&lt;/P&gt;</description>
      <pubDate>Wed, 03 May 2023 09:20:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Join-two-selected-values-of-a-column-with-quot-and-quot-in-the/m-p/3217468#M117498</guid>
      <dc:creator>Luzadriana255</dc:creator>
      <dc:date>2023-05-03T09:20:30Z</dc:date>
    </item>
  </channel>
</rss>

