<?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: How to concatenate unique values? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2301328#M56841</link>
    <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="353200" data-lia-user-login="Rinat" class="lia-mention lia-mention-user"&gt;Rinat&lt;/a&gt;&amp;nbsp;try it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Result = 
IF(
     [Value1] = [Value2],[Value3],
            IF(
            [Value1] = BLANK() &amp;amp;&amp;amp; [Value2] &amp;lt;&amp;gt; [Value3], COMBINEVALUES(";", [Value2],[Value3]),
                IF([Value2] = BLANK() &amp;amp;&amp;amp; [Value1] &amp;lt;&amp;gt; [Value3], COMBINEVALUES(";", [Value1],[Value3]),
                        IF([Value3] = BLANK() &amp;amp;&amp;amp; [Value1] &amp;lt;&amp;gt; [Value2], COMBINEVALUES(";", [Value1],[Value2]),
                            IF([Value1]&amp;lt;&amp;gt; BLANK() &amp;amp;&amp;amp; [Value2]&amp;lt;&amp;gt; BLANK()&amp;amp;&amp;amp; [Value3] &amp;lt;&amp;gt; BLANK()&amp;amp;&amp;amp; [Value1]&amp;lt;&amp;gt;[Value2], COMBINEVALUES(";", [Value1],[Value2]),
            [Value3])
            ))))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 25 Jan 2022 15:00:57 GMT</pubDate>
    <dc:creator>DimaMD</dc:creator>
    <dc:date>2022-01-25T15:00:57Z</dc:date>
    <item>
      <title>How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293442#M56453</link>
      <description>&lt;P&gt;Hello everyone.&lt;/P&gt;&lt;P&gt;Can someone please help me to get the DAX formula to create DAX formula to create a custom column which contains concatenated values from other columns with "; " as the delimiter. I just started my DAX journey and tried to use COMBINEDVALUES but don't know how to make them contain unique values. I'm looking for a DAX substitute of&amp;nbsp;&amp;nbsp;=TEXTJOIN(", ",TRUE, UNIQUE(G3:I3,TRUE)).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hope it makes sense &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;Thank you very much in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Value 1&lt;/TD&gt;&lt;TD&gt;Value 2&lt;/TD&gt;&lt;TD&gt;Value 3&lt;/TD&gt;&lt;TD&gt;Result&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;John&lt;/TD&gt;&lt;TD&gt;John&lt;/TD&gt;&lt;TD&gt;John&lt;/TD&gt;&lt;TD&gt;John&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Marie&lt;/TD&gt;&lt;TD&gt;Alex&lt;/TD&gt;&lt;TD&gt;Alex&lt;/TD&gt;&lt;TD&gt;Marie; Alex&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Thu, 20 Jan 2022 12:51:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293442#M56453</guid>
      <dc:creator>Rinat</dc:creator>
      <dc:date>2022-01-20T12:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293508#M56462</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;Getting a distinct list of values like this would be really straightforward using powerquery. Might I inquire what is your end goal after the data is in this format as described in your post?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 13:13:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293508#M56462</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2022-01-20T13:13:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293541#M56464</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="353200" data-lia-user-login="Rinat" class="lia-mention lia-mention-user"&gt;Rinat&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Try this event,&amp;nbsp;Is this your result?&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;measure = 
IF(
     [Value1] = [Value2], [Value],
     COMBINEVALUES(";", [Value1],[Value2])
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 13:33:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293541#M56464</guid>
      <dc:creator>DimaMD</dc:creator>
      <dc:date>2022-01-20T13:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293580#M56465</link>
      <description>&lt;P&gt;Thank you for this, I'll try it today or tomorrow when I have access. What if there are 3 or more values I need to concatenate?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 13:47:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293580#M56465</guid>
      <dc:creator>Rinat</dc:creator>
      <dc:date>2022-01-20T13:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293589#M56466</link>
      <description>&lt;P&gt;Hi. If this would be easier to do in power query, I can certainly do this there, especially as I learned that performance is better while using it. If you can give me an example for 3 values as above and what if I have more than 3. Thank you a lot!&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 13:50:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293589#M56466</guid>
      <dc:creator>Rinat</dc:creator>
      <dc:date>2022-01-20T13:50:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293614#M56468</link>
      <description>&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;For using powerquery I would unpivot the columns in question and use remove duplicates on the unpivoted column. This doesn't provide you with a list with separator as you described and that is the reason I asked what is your end goal. Here you example data is names so I guess you want a list of names?&lt;BR /&gt;&lt;BR /&gt;In that case PQ will be sufficient. However,&amp;nbsp; if you insist on a list with separator COMBINEVALUES is a good option.&lt;BR /&gt;&lt;BR /&gt;Some examples of what I mean:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 14:00:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293614#M56468</guid>
      <dc:creator>ValtteriN</dc:creator>
      <dc:date>2022-01-20T14:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293647#M56472</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="353200" data-lia-user-login="Rinat" class="lia-mention lia-mention-user"&gt;Rinat&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;You just need to add another column, in my example "Value3"&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 14:17:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293647#M56472</guid>
      <dc:creator>DimaMD</dc:creator>
      <dc:date>2022-01-20T14:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293730#M56479</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312820" data-lia-user-login="DimaMD" class="lia-mention lia-mention-user"&gt;DimaMD&lt;/a&gt;&amp;nbsp;what would be the "Value" string in your formula?&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 14:59:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293730#M56479</guid>
      <dc:creator>Rinat</dc:creator>
      <dc:date>2022-01-20T14:59:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293774#M56486</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="353200" data-lia-user-login="Rinat" class="lia-mention lia-mention-user"&gt;Rinat&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;I do not quite understand, give an example of data&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 15:29:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293774#M56486</guid>
      <dc:creator>DimaMD</dc:creator>
      <dc:date>2022-01-20T15:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293922#M56495</link>
      <description>&lt;P&gt;I'm sorry if I didn't make it clear. In my example there are&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Value 1&lt;/TD&gt;&lt;TD&gt;Value 2&lt;/TD&gt;&lt;TD&gt;Value 3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;so I'm wondering what is "Value" in your formula. Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 16:40:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2293922#M56495</guid>
      <dc:creator>Rinat</dc:creator>
      <dc:date>2022-01-20T16:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2294103#M56498</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="353200" data-lia-user-login="Rinat" class="lia-mention lia-mention-user"&gt;Rinat&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the measure is,&amp;nbsp;&lt;/P&gt;&lt;P&gt;measure =&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;[Value1] = [Value2], [Value3],&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;COMBINEVALUES(";", [Value1],[Value2])&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;I use the 'IF' function to compare "Values"&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 18:41:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2294103#M56498</guid>
      <dc:creator>DimaMD</dc:creator>
      <dc:date>2022-01-20T18:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2295413#M56567</link>
      <description>&lt;P&gt;Thank you,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312820" data-lia-user-login="DimaMD" class="lia-mention lia-mention-user"&gt;DimaMD&lt;/a&gt;. Is it possible to eliminate delimiter if, for example, Value1 is empty? In my case if Value1 is empty, I'm getting ";Value2;Value3". Thanks a lot!&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 10:25:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2295413#M56567</guid>
      <dc:creator>Rinat</dc:creator>
      <dc:date>2022-01-21T10:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2295781#M56580</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="353200" data-lia-user-login="Rinat" class="lia-mention lia-mention-user"&gt;Rinat&lt;/a&gt;&amp;nbsp; Yes,&amp;nbsp;the result will be as follows&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Jan 2022 14:18:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2295781#M56580</guid>
      <dc:creator>DimaMD</dc:creator>
      <dc:date>2022-01-21T14:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2298583#M56685</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312820" data-lia-user-login="DimaMD" class="lia-mention lia-mention-user"&gt;DimaMD&lt;/a&gt;&amp;nbsp;unfortunately, after some testing, I cannot confirm the formula worked for me. In your screen above I expected to see Tj,Ta. However, I see only Ta in the last row? Can you please explain how your formula works? Thank you very much for your help.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 13:12:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2298583#M56685</guid>
      <dc:creator>Rinat</dc:creator>
      <dc:date>2022-01-24T13:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2298776#M56695</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="353200" data-lia-user-login="Rinat" class="lia-mention lia-mention-user"&gt;Rinat&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Using the IF function, I compare values ​​1 and values ​​2 and assign values3,&amp;nbsp;otherwise I order COMBINE VALUES (";", [Value1], Value2])&lt;BR /&gt;example&lt;BR /&gt;if&amp;nbsp;John =&amp;nbsp;John ,&amp;nbsp;John&lt;BR /&gt;if&amp;nbsp;Marie =&amp;nbsp;Alex,&amp;nbsp;COMBINEVALUES(";", [Marie], [Alex])&lt;BR /&gt;result&amp;nbsp;&lt;BR /&gt;John&lt;BR /&gt;Marie;Alex&lt;BR /&gt;I hope you understand&lt;BR /&gt;&lt;BR /&gt;I advise you to familiarize yourself with this feature&lt;BR /&gt;&lt;A href="https://docs.microsoft.com/en-us/dax/if-function-dax" target="_blank"&gt;https://docs.microsoft.com/en-us/dax/if-function-dax&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://dax.guide/if/" target="_blank"&gt;https://dax.guide/if/&lt;/A&gt;&lt;BR /&gt;Your task is complicated if you need to compare other Values, how many Values ​​do you have?&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 14:46:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2298776#M56695</guid>
      <dc:creator>DimaMD</dc:creator>
      <dc:date>2022-01-24T14:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2298837#M56701</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312820" data-lia-user-login="DimaMD" class="lia-mention lia-mention-user"&gt;DimaMD&lt;/a&gt;&amp;nbsp;you are right. I need to learn more and I'm doing it.&lt;/P&gt;&lt;P&gt;I have no more than 4 Values in total and different combinations of filled-in and blank fields. In most cases, I have 3 values filled in but I don't want to hardcode this logic to the formula if possible. I have very little programming experience but maybe it's possible to read values in a cycle 4 times and add value to the result if the previous value doesn't equal the current. Just an idea...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Jan 2022 15:17:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2298837#M56701</guid>
      <dc:creator>Rinat</dc:creator>
      <dc:date>2022-01-24T15:17:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2299692#M56771</link>
      <description>&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="353200" data-lia-user-login="Rinat" class="lia-mention lia-mention-user"&gt;Rinat&lt;/a&gt;,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;According to your description, I think the Dax function doest not suitable analyze multiple fields. Perhaps you can try to use Power query formulas to do this operation.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;I create a custom column with M query functions to extract and analyze current row field values, concatenate 'nonblank' and distinct values with character ";":&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;#"Added Custom" = Table.AddColumn(#"Changed Type", "Combine", each Text.Combine(List.Distinct(List.Select(Record.ToList(_), each _ &amp;lt;&amp;gt; "")),";"))&lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;&lt;img /&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Full query:&lt;/FONT&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WclTSQcKxOtFKTkAWDENEnIEsIHIGY5CAC5DlAhF0VYqNBQA=", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Column1 = _t, Column2 = _t, Column3 = _t, Column4 = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}, {"Column2", type text}, {"Column3", type text}, {"Column4", type text}}),
    #"Added Custom" = Table.AddColumn(#"Changed Type", "Combine", each Text.Combine(List.Distinct(List.Select(Record.ToList(_), each _ &amp;lt;&amp;gt; "")),";"))
in
    #"Added Custom"&lt;/LI-CODE&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Regards,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="tahoma,arial,helvetica,sans-serif"&gt;Xiaoxin Sheng&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 01:44:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2299692#M56771</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-01-25T01:44:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2301328#M56841</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="353200" data-lia-user-login="Rinat" class="lia-mention lia-mention-user"&gt;Rinat&lt;/a&gt;&amp;nbsp;try it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Result = 
IF(
     [Value1] = [Value2],[Value3],
            IF(
            [Value1] = BLANK() &amp;amp;&amp;amp; [Value2] &amp;lt;&amp;gt; [Value3], COMBINEVALUES(";", [Value2],[Value3]),
                IF([Value2] = BLANK() &amp;amp;&amp;amp; [Value1] &amp;lt;&amp;gt; [Value3], COMBINEVALUES(";", [Value1],[Value3]),
                        IF([Value3] = BLANK() &amp;amp;&amp;amp; [Value1] &amp;lt;&amp;gt; [Value2], COMBINEVALUES(";", [Value1],[Value2]),
                            IF([Value1]&amp;lt;&amp;gt; BLANK() &amp;amp;&amp;amp; [Value2]&amp;lt;&amp;gt; BLANK()&amp;amp;&amp;amp; [Value3] &amp;lt;&amp;gt; BLANK()&amp;amp;&amp;amp; [Value1]&amp;lt;&amp;gt;[Value2], COMBINEVALUES(";", [Value1],[Value2]),
            [Value3])
            ))))&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Jan 2022 15:00:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2301328#M56841</guid>
      <dc:creator>DimaMD</dc:creator>
      <dc:date>2022-01-25T15:00:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2302908#M56922</link>
      <description>&lt;P&gt;thank you,&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;! It looks like it worked as expected. As I'm new, let me ask you the following: would it be correct to pass the list in the following way&lt;SPAN&gt;?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;List.Select({[column1],[column2],[column3]})List.Select({[column1],[column2],[column3]})&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;I've edited the code manually in the advanced editor. What if I want to add column via wizard?&lt;/P&gt;&lt;P&gt;For some reason the following didn't work for me:&lt;/P&gt;&lt;P&gt;=Text.Combine(List.Distinct(List.Select({[column1],[column2],[column3]}, each _ &amp;lt;&amp;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;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jan 2022 11:53:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2302908#M56922</guid>
      <dc:creator>Rinat</dc:creator>
      <dc:date>2022-01-26T11:53:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to concatenate unique values?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2302913#M56923</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="312820" data-lia-user-login="DimaMD" class="lia-mention lia-mention-user"&gt;DimaMD&lt;/a&gt;. I'll keep your solution in a back pocket and will test it when I can. Thank you for your help!&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jan 2022 11:56:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-concatenate-unique-values/m-p/2302913#M56923</guid>
      <dc:creator>Rinat</dc:creator>
      <dc:date>2022-01-26T11:56:49Z</dc:date>
    </item>
  </channel>
</rss>

