<?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: Ignoring (Blank) in a DAX query in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1457736#M27446</link>
    <description>"The problem I have, is that when this is checking the values, it can see that there are blanks within the data which I can't ignore as it isn't my data and can include blanks whenever it comes in."&lt;BR /&gt;&lt;BR /&gt;Can you please give a more clear description of where in your formula the problem occurs?</description>
    <pubDate>Tue, 27 Oct 2020 09:42:37 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-10-27T09:42:37Z</dc:date>
    <item>
      <title>Ignoring (Blank) in a DAX query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1455666#M27398</link>
      <description>&lt;P&gt;Hey PBI Community. I'm close to the end of a long project, but have one final issue with a Dax query that I am using to determine some values, seen below:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;ExceedsCheck2 = 
VAR ThisResult =
    MAX ('Query1'[StdResult])
VAR Criteria=
    MAXX (
        ALLSELECTED ( 'Query1'[GAC] ),
        CALCULATE (
            MAX ( 'Query1'[GAC] )
        )
    )
VAR Range=
    MAXX (
        ALLSELECTED ( 'Query1'[lod] ),
        CALCULATE (
            MAX ( 'Query1'[lod] )
        )
    )
RETURN
    if (Range&amp;gt;Criteria, 1,if(ThisResult&amp;gt;=Criteria, 2, 0))&lt;/LI-CODE&gt;&lt;P&gt;This effectively checks a column (LOD) against another (GAC) to see if it exceeds the value within. The problem I have, is that when this is checking the values, it can see that there are blanks within the data which I can't ignore as it isn't my data and can include blanks whenever it comes in.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I tweak the query above, to only look at values that contain a number?&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>Mon, 26 Oct 2020 14:56:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1455666#M27398</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-26T14:56:00Z</dc:date>
    </item>
    <item>
      <title>Re: Ignoring (Blank) in a DAX query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1455717#M27400</link>
      <description>&lt;P&gt;Is it a problem for you if you replace null values with 0?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 15:16:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1455717#M27400</guid>
      <dc:creator>azaher68</dc:creator>
      <dc:date>2020-10-26T15:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Ignoring (Blank) in a DAX query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1455733#M27401</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="111359" data-lia-user-login="azaher68" class="lia-mention lia-mention-user"&gt;azaher68&lt;/a&gt;&amp;nbsp;thanks for your reply. Yes, this still causes problems because the result will still be greater than 0 and flag it.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Oct 2020 15:29:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1455733#M27401</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-26T15:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Ignoring (Blank) in a DAX query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1457736#M27446</link>
      <description>"The problem I have, is that when this is checking the values, it can see that there are blanks within the data which I can't ignore as it isn't my data and can include blanks whenever it comes in."&lt;BR /&gt;&lt;BR /&gt;Can you please give a more clear description of where in your formula the problem occurs?</description>
      <pubDate>Tue, 27 Oct 2020 09:42:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1457736#M27446</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-27T09:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Ignoring (Blank) in a DAX query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1458018#M27454</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;Effectively, the data-set has a GAC and LOD column. Both of these have numeric values and (Blank) values. The formula needs to only check if the value is numeric, if it isn't then mark it as 3.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, I have a result of 0.20 and the GAC is (Blank) so the formula sees this as Result &amp;gt; GAC and highlights is as such, which is incorrect. The forumla should see (Blank) and mark it as 3 or just ignore it, it doesn't do this presently and I am not sure how to achieve this.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Oct 2020 11:23:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1458018#M27454</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-27T11:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Ignoring (Blank) in a DAX query</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1460408#M27526</link>
      <description>&lt;P&gt;I've managed to get this to work using NOT ISBLANK and ISBLANK checks within DAX&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Oct 2020 09:45:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Ignoring-Blank-in-a-DAX-query/m-p/1460408#M27526</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-28T09:45:31Z</dc:date>
    </item>
  </channel>
</rss>

