<?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 Error when using Distinct Function: A table of multiple values was supplied where a single value was in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616212#M139809</link>
    <description>&lt;P&gt;New user here trying to navigate unexpected results. I have a fact table that has multiple entries for repeating data points (email addresses). The same email address is listed multiple times within the same column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a new column in a new table using the DISTINCT function, but I am recieving the error mentioned above.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The goal is to populate the new column in the new table with ONLY a list of the unique email addresses that are present in the fact table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was my assumption that DISTINCT was a fairly straightforward solution, but that does not appear to be the case. Any tips?&lt;/P&gt;</description>
    <pubDate>Thu, 04 Jan 2024 18:35:48 GMT</pubDate>
    <dc:creator>clint_powell</dc:creator>
    <dc:date>2024-01-04T18:35:48Z</dc:date>
    <item>
      <title>Error when using Distinct Function: A table of multiple values was supplied where a single value was</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616212#M139809</link>
      <description>&lt;P&gt;New user here trying to navigate unexpected results. I have a fact table that has multiple entries for repeating data points (email addresses). The same email address is listed multiple times within the same column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to create a new column in a new table using the DISTINCT function, but I am recieving the error mentioned above.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The goal is to populate the new column in the new table with ONLY a list of the unique email addresses that are present in the fact table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It was my assumption that DISTINCT was a fairly straightforward solution, but that does not appear to be the case. Any tips?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 18:35:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616212#M139809</guid>
      <dc:creator>clint_powell</dc:creator>
      <dc:date>2024-01-04T18:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using Distinct Function: A table of multiple values was supplied where a single value was</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616226#M139810</link>
      <description>&lt;P&gt;hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="669490" data-lia-user-login="clint_powell" class="lia-mention lia-mention-user"&gt;clint_powell&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;use all() function it give unique value of column&lt;/P&gt;&lt;P&gt;like below&lt;/P&gt;&lt;P&gt;all(tablename[columnname])&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 18:38:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616226#M139810</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-01-04T18:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using Distinct Function: A table of multiple values was supplied where a single value was</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616295#M139813</link>
      <description>&lt;P&gt;Thanks! Is there a way to pull in all the values, but ignore the nulls?&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 19:21:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616295#M139813</guid>
      <dc:creator>clint_powell</dc:creator>
      <dc:date>2024-01-04T19:21:26Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using Distinct Function: A table of multiple values was supplied where a single value was</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616310#M139814</link>
      <description>&lt;P&gt;hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="669490" data-lia-user-login="clint_powell" class="lia-mention lia-mention-user"&gt;clint_powell&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;try below&lt;/P&gt;&lt;P&gt;filter(&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; all(tablename[columnname]),&lt;BR /&gt;&amp;nbsp;tablename[columnname]&amp;lt;&amp;gt;blank()&lt;BR /&gt;&lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.and don't forgot to give kudos.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 19:29:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616310#M139814</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-01-04T19:29:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using Distinct Function: A table of multiple values was supplied where a single value was</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616329#M139815</link>
      <description>&lt;P&gt;Thanks so much for the quick responses! But, I'm still getting an error, see below:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 19:40:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616329#M139815</guid>
      <dc:creator>clint_powell</dc:creator>
      <dc:date>2024-01-04T19:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using Distinct Function: A table of multiple values was supplied where a single value was</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616346#M139816</link>
      <description>&lt;P&gt;Hi, &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="669490" data-lia-user-login="clint_powell" class="lia-mention lia-mention-user"&gt;clint_powell&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Syntax error for all() function&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See my code properly&lt;/P&gt;&lt;P&gt;You miss&amp;nbsp; ) to finish all() function&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;filter(&lt;/P&gt;&lt;P&gt;&amp;nbsp; all(tablename[columnname]),&lt;/P&gt;&lt;P&gt;&amp;nbsp;tablename[columnname]&amp;lt;&amp;gt;blank()&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.and don't forgot to give kudos.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 19:46:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616346#M139816</guid>
      <dc:creator>Dangar332</dc:creator>
      <dc:date>2024-01-04T19:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Error when using Distinct Function: A table of multiple values was supplied where a single value was</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616357#M139817</link>
      <description>&lt;P&gt;That was it, thanks so much!&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jan 2024 19:56:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Error-when-using-Distinct-Function-A-table-of-multiple-values/m-p/3616357#M139817</guid>
      <dc:creator>clint_powell</dc:creator>
      <dc:date>2024-01-04T19:56:21Z</dc:date>
    </item>
  </channel>
</rss>

