<?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: DAX command to differentiate between null value and zero in calculated column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482110#M133156</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="616170" data-lia-user-login="AngelaB" class="lia-mention lia-mention-user"&gt;AngelaB&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can use the ISBLANK function to check if the value is null, and then use the IF function to return a different result based on that.&lt;BR /&gt;&lt;BR /&gt;The following will return BLANK() if [Value A] is null, and otherwise return the percentage of “Yes” values in [Value A]. You can then use different formatting options or conditional formatting to display the blank values differently from the zero values.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[calculated%] =
IF(
ISBLANK([Value A]),
BLANK(),
DIVIDE(
COUNTA(FILTER(Table, [Value A] = "Yes")),
COUNTA([Value A])
)
)&lt;/LI-CODE&gt;&lt;P&gt;Or&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[calculated%] =
IF(
    ISBLANK(CALCULATE(COUNTA([Value A], [Value A] IN { "Yes" })), [Value A])),
    "Null",
    IF(
        [Value A] = 0,
        "0%",
        DIVIDE(
            CALCULATE(COUNTA([Value A], [Value A] IN { "Yes" })),
            [Value A]
        )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this work&lt;BR /&gt;@ me in replies or I'll lose your thread!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Wed, 18 Oct 2023 01:02:20 GMT</pubDate>
    <dc:creator>DallasBaba</dc:creator>
    <dc:date>2023-10-18T01:02:20Z</dc:date>
    <item>
      <title>DAX command to differentiate between null value and zero in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482085#M133153</link>
      <description>&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;**This post has been removed from Desktop thread and reposted here as I think may be more appropriate**&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've read a few posts along these lines and tried a few of the solutions but none appear to be working. The situation is that I have a calculated column that returns a simple percentage that is a calculation of a filtered value:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;[calculated%] =&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; (&lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;COUNTA&lt;/SPAN&gt;&lt;SPAN&gt;([Value A]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [Value A]&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;IN&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;{&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;"Yes"&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;})), &amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [Value A]&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;This is then displayed by site/timepoint in a table and box and whisker plots. The trouble is that I need to be able to distinguish between null values (unable to calculate because there's no data to calculate a percentage from) and returned value of 0% as this contributes to mean/median etc.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I've tried adding +0 but this simply makes all null and 0% values the same. I also tried defining a variable and using an IF statement (maybe not very well!) but returns the same result:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;return&amp;nbsp;if(&amp;nbsp; &amp;nbsp; not ISBLANK([defined variable]), [defined variable],&amp;nbsp; &amp;nbsp; (if(&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; [defined variable] = 0, 0, BLANK())&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; ))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here is a link to the .pbix file and .csv data (I'm unable to attach these files unfortunately) -&amp;nbsp;&lt;A href="https://www.dropbox.com/scl/fo/zyhko4e7zr0ucxtdv453i/h?rlkey=z2f4bum5ybcb48eje5pdi4vyu&amp;amp;dl=0" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.dropbox.com/scl/fo/zyhko4e7zr0ucxtdv453i/h?rlkey=z2f4bum5ybcb48eje5pdi4vyu&amp;amp;dl=0&lt;/A&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Any tips from the brains trust? None of the solutions thus far have worked and ChatGPT has been unable to solve it either!&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 27 Feb 2024 00:37:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482085#M133153</guid>
      <dc:creator>AngelaB</dc:creator>
      <dc:date>2024-02-27T00:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command to differentiate between null value and zero in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482110#M133156</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="616170" data-lia-user-login="AngelaB" class="lia-mention lia-mention-user"&gt;AngelaB&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;you can use the ISBLANK function to check if the value is null, and then use the IF function to return a different result based on that.&lt;BR /&gt;&lt;BR /&gt;The following will return BLANK() if [Value A] is null, and otherwise return the percentage of “Yes” values in [Value A]. You can then use different formatting options or conditional formatting to display the blank values differently from the zero values.&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[calculated%] =
IF(
ISBLANK([Value A]),
BLANK(),
DIVIDE(
COUNTA(FILTER(Table, [Value A] = "Yes")),
COUNTA([Value A])
)
)&lt;/LI-CODE&gt;&lt;P&gt;Or&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[calculated%] =
IF(
    ISBLANK(CALCULATE(COUNTA([Value A], [Value A] IN { "Yes" })), [Value A])),
    "Null",
    IF(
        [Value A] = 0,
        "0%",
        DIVIDE(
            CALCULATE(COUNTA([Value A], [Value A] IN { "Yes" })),
            [Value A]
        )
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if this work&lt;BR /&gt;@ me in replies or I'll lose your thread!!!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 01:02:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482110#M133156</guid>
      <dc:creator>DallasBaba</dc:creator>
      <dc:date>2023-10-18T01:02:20Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command to differentiate between null value and zero in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482144#M133163</link>
      <description>&lt;P&gt;Thanks for your help&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="446607" data-lia-user-login="DallasBaba" class="lia-mention lia-mention-user"&gt;DallasBaba&lt;/a&gt;&amp;nbsp;but I don't seem to be able to get that to work either. It now just returns all null and 0% values as 'null'.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here's the DAX that I ended up with in case you can see an error with what I've done?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[calculated%] =
var [defined var] =
DIVIDE(
    (CALCULATE(
        COUNTA([Value A]),
        [Value A] IN { "Yes" })),  
        COUNTA([Value A]))
return
IF(
    ISBLANK([defined var]),
    "Null",
    IF(
        [defined var] = 0,
        "0%",
        [defined var]
        )
    )&lt;/LI-CODE&gt;</description>
      <pubDate>Wed, 18 Oct 2023 01:46:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482144#M133163</guid>
      <dc:creator>AngelaB</dc:creator>
      <dc:date>2023-10-18T01:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command to differentiate between null value and zero in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482168#M133166</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="616170" data-lia-user-login="AngelaB" class="lia-mention lia-mention-user"&gt;AngelaB&lt;/a&gt;&amp;nbsp;you can&amp;nbsp; modify the furmula&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[calculated%] =
VAR defined_var =
    DIVIDE(
        CALCULATE(
            COUNTA([Value A]),
            [Value A] IN { "Yes" }
        ),
        COUNTA([Value A])
    )
RETURN
    IF(
        ISBLANK(defined_var),
        "Null",
        IF(
            defined_var = 0,
            "0%",
            defined_var
        )
    )&lt;/LI-CODE&gt;&lt;P&gt;This formula should allow you to distinguish between null and 0% values in your [calculated%] column&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution!&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 02:05:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482168#M133166</guid>
      <dc:creator>DallasBaba</dc:creator>
      <dc:date>2023-10-18T02:05:15Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command to differentiate between null value and zero in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482305#M133173</link>
      <description>&lt;P&gt;Thanks again, but same result I'm afraid, blank and 0 all return "null".&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 04:00:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3482305#M133173</guid>
      <dc:creator>AngelaB</dc:creator>
      <dc:date>2023-10-18T04:00:16Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command to differentiate between null value and zero in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3483859#M133263</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="616170" data-lia-user-login="AngelaB" class="lia-mention lia-mention-user"&gt;AngelaB&lt;/a&gt;&amp;nbsp;Thanks for letting me know, now let try&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[calculated%] =
VAR defined_var =
    DIVIDE(
        CALCULATE(
            COUNTA([Value A]),
            [Value A] IN { "Yes" }
        ),
        COUNTA([Value A])
    )
RETURN
    IF(
        ISBLANK(defined_var),
        "Null",
        IF(
            defined_var = 0,
            "0%",
            FORMAT(defined_var, "0%") // This line ensures the percentage is formatted correctly
        )
    )&lt;/LI-CODE&gt;&lt;P&gt;The key change in this formula is using the FORMAT function to ensure the percentage is displayed as a percentage (e.g., "0%"). This should allow you to distinguish between null and 0% values in your [calculated%] column.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Let me know if this works&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;@ me in replies or I'll lose your thread!!!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 16:48:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3483859#M133263</guid>
      <dc:creator>DallasBaba</dc:creator>
      <dc:date>2023-10-18T16:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command to differentiate between null value and zero in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3495181#M133896</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="446607" data-lia-user-login="DallasBaba" class="lia-mention lia-mention-user"&gt;DallasBaba&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for continuing to help with this. I tried that edit but same result, it's returning all as "null". Does the order of expressions matter? I tried to reorder so that 0% was being recognised first, but couldn't get it to accept the FORMAT within the IF statement.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ange&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 03:21:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3495181#M133896</guid>
      <dc:creator>AngelaB</dc:creator>
      <dc:date>2023-10-25T03:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command to differentiate between null value and zero in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3495283#M133905</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="616170" data-lia-user-login="AngelaB" class="lia-mention lia-mention-user"&gt;AngelaB&lt;/a&gt;&amp;nbsp;The order of expressions in the statement should not affect the outcome.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, we can try a different approach by using a nested IF statements to ensure that the "0%" is recognized first.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;[calculated%] =
VAR defined_var =
    DIVIDE(
        CALCULATE(
            COUNTA([Value A]),
            [Value A] IN { "Yes" }
        ),
        COUNTA([Value A])
    )
RETURN
    IF(
        defined_var = 0,
        "0%",
        IF(
            ISBLANK(defined_var),
            "Null",
            FORMAT(defined_var, "0%")
        )
    )&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The above measure checks if defined_var is equal to 0%. If it is, It will return "0%." If not, the statement will proceed to check if it's blank and return "Null" if it is. Otherwise, It will format defined_var as a percentage.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This should ensure that "0%" is recognized before checking for null values.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this doesn't work, please send the pbix file of your work sample with the existing relationship between the tables.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 04:22:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3495283#M133905</guid>
      <dc:creator>DallasBaba</dc:creator>
      <dc:date>2023-10-25T04:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command to differentiate between null value and zero in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3495423#M133906</link>
      <description>&lt;P&gt;Thank you, I've tried that now also and it just keeps returning whatever the first expression is in the IF statement, so now they're all displaying as 0% - this makes me think there is something that I need to do a step earlier to help Power BI recognise what is 0 and what is null?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This may be a potentially stupid question, but how do I provide the .pbix file without also providing identifiable information?&lt;/P&gt;</description>
      <pubDate>Wed, 25 Oct 2023 06:18:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3495423#M133906</guid>
      <dc:creator>AngelaB</dc:creator>
      <dc:date>2023-10-25T06:18:02Z</dc:date>
    </item>
    <item>
      <title>Re: DAX command to differentiate between null value and zero in calculated column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3681985#M142992</link>
      <description>&lt;P&gt;Hi again&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="446607" data-lia-user-login="DallasBaba" class="lia-mention lia-mention-user"&gt;DallasBaba&lt;/a&gt;&amp;nbsp;. Are you still willing to look at the .pbix file for this? I have tried ChatGPT and enlisting the help of someone with more Power BI experience than I have but still no luck.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm unable to attached the .pbix file and linked .csv but here is a DropBox link -&amp;nbsp;&lt;A href="https://www.dropbox.com/scl/fo/zyhko4e7zr0ucxtdv453i/h?rlkey=z2f4bum5ybcb48eje5pdi4vyu&amp;amp;dl=0" target="_blank"&gt;https://www.dropbox.com/scl/fo/zyhko4e7zr0ucxtdv453i/h?rlkey=z2f4bum5ybcb48eje5pdi4vyu&amp;amp;dl=0&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the above DAX that I was posting, [Value A] = [Mind Active] and the calculated measure is [%COG_IMP].&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help, I'm still convinced there has to be a simple solution!&lt;/P&gt;&lt;P&gt;Angela&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 05:51:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-command-to-differentiate-between-null-value-and-zero-in/m-p/3681985#M142992</guid>
      <dc:creator>AngelaB</dc:creator>
      <dc:date>2024-02-06T05:51:50Z</dc:date>
    </item>
  </channel>
</rss>

