<?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 get distinct values without null values for a parameter in Report Builder in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3426037#M129788</link>
    <description>&lt;P&gt;Try this DAX:&lt;/P&gt;&lt;P&gt;DistinctCustomerGroup = Distinct(Filter('Dim_Customers', Not IsBlank('Dim_Customers'[Customer group name])))&lt;/P&gt;</description>
    <pubDate>Tue, 12 Sep 2023 09:55:45 GMT</pubDate>
    <dc:creator>ChiragGarg2512</dc:creator>
    <dc:date>2023-09-12T09:55:45Z</dc:date>
    <item>
      <title>How to get distinct values without null values for a parameter in Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3426017#M129782</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What I'm tryng to achieve is to get distinct values from&amp;nbsp;&lt;STRONG&gt;'Dim_Customers'[Customer group name]&lt;/STRONG&gt;&amp;nbsp;but I want to remove null values.&lt;BR /&gt;Can anybody tell me the correct syntax or how to do it?&lt;BR /&gt;&lt;BR /&gt;This doesn't work &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;BR /&gt;&lt;STRONG&gt;EVALUATE VALUES('Dim_Customers'[Customer group name]),FILTER('Dim_Customers','Dim_Customers'[Customer group name] &amp;lt;&amp;gt; BLANK())&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;BR&lt;BR /&gt;Lotte&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 09:47:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3426017#M129782</guid>
      <dc:creator>LotteLaugesen</dc:creator>
      <dc:date>2023-09-12T09:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to get distinct values without null values for a parameter in Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3426037#M129788</link>
      <description>&lt;P&gt;Try this DAX:&lt;/P&gt;&lt;P&gt;DistinctCustomerGroup = Distinct(Filter('Dim_Customers', Not IsBlank('Dim_Customers'[Customer group name])))&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 09:55:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3426037#M129788</guid>
      <dc:creator>ChiragGarg2512</dc:creator>
      <dc:date>2023-09-12T09:55:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to get distinct values without null values for a parameter in Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3426106#M129811</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="615042" data-lia-user-login="ChiragGarg2512" class="lia-mention lia-mention-user"&gt;ChiragGarg2512&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you, but it's inside Query Designer in Report Builder and it doesn't accept that&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 10:41:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3426106#M129811</guid>
      <dc:creator>LotteLaugesen</dc:creator>
      <dc:date>2023-09-12T10:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to get distinct values without null values for a parameter in Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3427800#M129921</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Sorry for the misunderstanding. Try this:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;EVALUATE &lt;/SPAN&gt;&lt;SPAN&gt;VALUES&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Dim_Customers'&lt;/SPAN&gt;&lt;SPAN&gt;[Customer group name]),&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Dim_Customers'&lt;/SPAN&gt;&lt;SPAN&gt;, (&lt;/SPAN&gt;&lt;SPAN&gt;NOT&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;ISBLANK(&lt;/SPAN&gt;&lt;SPAN&gt;'Dim_Customer'&lt;/SPAN&gt;&lt;SPAN&gt;[Customer group name])) &amp;amp;&amp;amp; &lt;/SPAN&gt;&lt;SPAN&gt;'Dim_Customer'&lt;/SPAN&gt;&lt;SPAN&gt;[Customer group name] &lt;/SPAN&gt;&lt;SPAN&gt;&amp;lt;&amp;gt;&lt;/SPAN&gt; &lt;SPAN&gt;""&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 13 Sep 2023 07:01:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3427800#M129921</guid>
      <dc:creator>ChiragGarg2512</dc:creator>
      <dc:date>2023-09-13T07:01:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to get distinct values without null values for a parameter in Report Builder</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3427829#M129925</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="615042" data-lia-user-login="ChiragGarg2512" class="lia-mention lia-mention-user"&gt;ChiragGarg2512&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you, but I get this syntax error:&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Sep 2023 07:16:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-distinct-values-without-null-values-for-a-parameter/m-p/3427829#M129925</guid>
      <dc:creator>LotteLaugesen</dc:creator>
      <dc:date>2023-09-13T07:16:08Z</dc:date>
    </item>
  </channel>
</rss>

