<?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: Calculated Measure percent not blank in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749100#M36400</link>
    <description>&lt;P&gt;You need to upgrade to the March 2021 version of Power BI Desktop. It supports multiple columns now.&lt;BR /&gt;&lt;BR /&gt;If you cannot, use this measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE(
    COUNTROWS( 'Table' ),
    FILTER(
        ALL(
            'Table'[MVA?],
            'Table'[Insurance 1],
            'Table'[Insurance 2]
        ),
        'Table'[MVA?]
            = TRUE()
            &amp;amp;&amp;amp; ( 'Table'[Insurance 1] )
                &amp;lt;&amp;gt; BLANK()
            || 'Table'[Insurance 2]
                &amp;lt;&amp;gt; BLANK()
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;But you should be on March 2021 if possible. Only do the above if your IT overlords are evil, or you are on Report Server, which will get this feature in May I think.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 27 Mar 2021 00:03:04 GMT</pubDate>
    <dc:creator>edhans</dc:creator>
    <dc:date>2021-03-27T00:03:04Z</dc:date>
    <item>
      <title>Calculated Measure percent not blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1744242#M36259</link>
      <description>&lt;P&gt;Hello everyone,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table, and I would first like to filter rows where a condition is satified, and then from the rows that remain, calculate the percent of IDs where either of two columns are NOT BLANK, over all IDs. This would be for a card display.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Table:&amp;nbsp;&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;ID&lt;/TD&gt;&lt;TD&gt;MVA?&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;Insurance 1&lt;/TD&gt;&lt;TD&gt;Insurance 2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;U&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;F&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;False&lt;/TD&gt;&lt;TD&gt;Y&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;True&lt;/TD&gt;&lt;TD&gt;J&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The logic would be:&amp;nbsp;&lt;/P&gt;&lt;P&gt;For rows where MVA? = True, whats the percentage of IDs that had a value in either 'Insurance 1' or 'Insurance 2'&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please note, my IDs repeat, so this is an added complication&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this example, 3 IDs have a value in Insurance 1 or Insurance 2, out of 4 IDs total where MVA?=TRUE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help appreciated as I am totally lost!!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your time,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Denisse&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 02:12:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1744242#M36259</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-25T02:12:19Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure percent not blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1744427#M36263</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , Try a measure like &lt;/P&gt;
&lt;P&gt;divide(coutrows(filter(Table, [MVA]= true() &amp;amp;&amp;amp; (not(isblank([Insurance 1])) || not(isblank([Insurance 1]))))) ,coutrows(filter(Table, [MVA]= true())))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;or if you do not want true below&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;divide(coutrows(filter(Table, [MVA]= true() &amp;amp;&amp;amp; (not(isblank([Insurance 1])) || not(isblank([Insurance 1]))))) ,coutrows(Table))&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 04:57:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1744427#M36263</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-03-25T04:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure percent not blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749011#M36392</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24715" data-lia-user-login="edhans" class="lia-mention lia-mention-user"&gt;edhans&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Would you know how to address this? It is a continuation of the previous problem you helped me with, the last step before I can build a dashboard.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I only got as far as counting the unqiue values of my IDs that are MVA=True/Yes:&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;mvaC = CALCULATE(DISTINCTCOUNT('delete sample'[IncidentId]), FILTER('delete sample', 'delete sample'[MVA]="Yes"))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I am having a hard time with coutining the rows that are not blank for insurance 1 or insurance 2&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I appreciapte your help!!&amp;nbsp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 26 Mar 2021 21:19:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749011#M36392</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-26T21:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure percent not blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749046#M36393</link>
      <description>&lt;P&gt;Kinda walking in on the middle of this&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;but see if this helps. First of all, what is a "blank?" The data you gave had spaces, but that is understandable, tables in this forum cannot understand the difference between spaces, empty fields "", or nulls.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;So, I forced the empty things to be null - a special value that will compare against BLANK() in DAX. This is what it looks like in Power Query. Note the word&amp;nbsp;&lt;EM&gt;null&lt;/EM&gt; for the blank areas.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Here is the M code. You might have to replace " " (there is a space there) or "" with null. When doing "", just leave the first box blank in the Replace Values box. Then use the lower case word null in the 2nd box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is tjhe M code:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("i45WMlTSUQopKk0FUgpAHKoUqxOtZARkuSXmFINEHcEyIFFjJFEFuKgJwgA3/IKmWPWboToAj6A5kv5IuKgFQqkXRDAWAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [ID = _t, #"MVA?" = _t, #"Insurance 1" = _t, #"Insurance 2" = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"MVA?", type logical}}),
    #"Replaced Value" = Table.ReplaceValue(#"Changed Type"," ",null,Replacer.ReplaceValue,{"Insurance 1", "Insurance 2"})
in
    #"Replaced Value"&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now, for a card, the below DAX will return 4. In another visual, you may have filter context to deal with.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE(
    COUNTROWS( 'Table' ),
    'Table'[MVA?]
        = TRUE()
        &amp;amp;&amp;amp; ( 'Table'[Insurance 1] )
            &amp;lt;&amp;gt; BLANK()
        || 'Table'[Insurance 2]
            &amp;lt;&amp;gt; BLANK()
)&lt;/LI-CODE&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;
&lt;P&gt;Visually in the DAX model, you cannot tell if Insurance 1 has a space, is empty, often represented by "", or is null. So use Power Query to validate what is there, then adjust your DAX accordingly. Nulls are easier to deal with because you know what they are.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also note that the MVA field for me is a real true/false value, not TRUE/FALSE as text. Adjust the DAX accordingly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that doesn't answer your question, please tell me what the answer should be and how I should arrive at it.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Mar 2021 22:06:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749046#M36393</guid>
      <dc:creator>edhans</dc:creator>
      <dc:date>2021-03-26T22:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure percent not blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749079#M36397</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24715" data-lia-user-login="edhans" class="lia-mention lia-mention-user"&gt;edhans&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for looking into this for me, I appreciate it. I changed the blanks to nulls, and the MVA column to type boolean, and tried your meausre, but I get an error regarding having multiple columns:&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>Fri, 26 Mar 2021 23:26:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749079#M36397</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-26T23:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure percent not blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749100#M36400</link>
      <description>&lt;P&gt;You need to upgrade to the March 2021 version of Power BI Desktop. It supports multiple columns now.&lt;BR /&gt;&lt;BR /&gt;If you cannot, use this measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE(
    COUNTROWS( 'Table' ),
    FILTER(
        ALL(
            'Table'[MVA?],
            'Table'[Insurance 1],
            'Table'[Insurance 2]
        ),
        'Table'[MVA?]
            = TRUE()
            &amp;amp;&amp;amp; ( 'Table'[Insurance 1] )
                &amp;lt;&amp;gt; BLANK()
            || 'Table'[Insurance 2]
                &amp;lt;&amp;gt; BLANK()
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;But you should be on March 2021 if possible. Only do the above if your IT overlords are evil, or you are on Report Server, which will get this feature in May I think.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":beaming_face_with_smiling_eyes:"&gt;😁&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Mar 2021 00:03:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749100#M36400</guid>
      <dc:creator>edhans</dc:creator>
      <dc:date>2021-03-27T00:03:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure percent not blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749109#M36402</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24715" data-lia-user-login="edhans" class="lia-mention lia-mention-user"&gt;edhans&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;hehe the IT overlords are not so kind, I'll have to wait until Monday.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I did a work around, since the two columns were complicating things, and I read that using filter ALL can get you in trouble later. I created a new boolean column named 'Insurance Blank' that tells me whether both insurance 1 and insurance 2 are blank. Then I managed to calculate the number of rows that are not blank for MVA=true (&lt;STRONG&gt;in image it's NumInsur&lt;/STRONG&gt;), and the distinct rows when MVA=True (&lt;STRONG&gt;in image it's Count_MVA&lt;/STRONG&gt;), but now I don't know how to combine everything to divide and get the percentage:&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;&lt;P&gt;Thank you once again for your time!&lt;/P&gt;</description>
      <pubDate>Sat, 27 Mar 2021 00:32:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749109#M36402</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-27T00:32:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure percent not blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749169#M36408</link>
      <description>&lt;P&gt;I'm not sure what you are trying to do, but FILTER with ALL on a&amp;nbsp;&lt;EM&gt;column&lt;/EM&gt; is just fine. In fact, when you type:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE(
   Expression,
   Table[Field] = 1
)&lt;/LI-CODE&gt;
&lt;P&gt;DAX is doing this in the background:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;CALCULATE(
   Expression
   FILTER(
      ALL(Table[Field]),
      Table[Field] = 1
   )
)&lt;/LI-CODE&gt;
&lt;P&gt;When I gave you the FILTER with ALL() in the 3 columns, that is the same thing - the&amp;nbsp;&lt;EM&gt;exact same thing&lt;/EM&gt;&amp;nbsp;as the Calculate above with 3 conditions - and that is the point - they are't conditions at all, they are all tables! The predicate Table[Field] = 1 is converted to the FILTER() function by DAX to do the work. It is just syntax sugar to make typing the filters easier.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Doesn't mean what I gave you will work for your situation, but there is nothing wrong with what I did. Using FILTER with ALL for a &lt;U&gt;&lt;EM&gt;&lt;STRONG&gt;table&lt;/STRONG&gt;&lt;/EM&gt;&lt;/U&gt; is what can cause performance issues, but I filtered columns, not a table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The March 2021 update just enhances the syntax sugar to allow 2+ columns to be referenced without having to resort to using FILTER with ALL for 3 columns, but performance is the same, because DAX is really creating the larger measure I gave you to do the work.&lt;/P&gt;</description>
      <pubDate>Sat, 27 Mar 2021 03:13:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1749169#M36408</guid>
      <dc:creator>edhans</dc:creator>
      <dc:date>2021-03-27T03:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure percent not blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1752537#M36550</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="24715" data-lia-user-login="edhans" class="lia-mention lia-mention-user"&gt;edhans&lt;/a&gt;&amp;nbsp;thank you for your time and help, Ed! It worked&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 18:08:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1752537#M36550</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-29T18:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: Calculated Measure percent not blank</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1752626#M36558</link>
      <description>&lt;P&gt;Great&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;! Glad I was able to assist, and hopefully show that using FILTER with ALL on a column(s) is fine. It is on a &lt;EM&gt;&lt;STRONG&gt;table&lt;/STRONG&gt; &lt;/EM&gt;that it can hit performance issues and is generally not a good practice.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Mar 2021 18:59:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculated-Measure-percent-not-blank/m-p/1752626#M36558</guid>
      <dc:creator>edhans</dc:creator>
      <dc:date>2021-03-29T18:59:36Z</dc:date>
    </item>
  </channel>
</rss>

