<?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 function to count all other DAX functions in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-function-to-count-all-other-DAX-functions/m-p/3359388#M126281</link>
    <description>&lt;P&gt;Hi Owen thank you for responding so quickly and appologies for my late response. Your measure works fine thank you Richard&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Aug 2023 09:35:54 GMT</pubDate>
    <dc:creator>cottrera</dc:creator>
    <dc:date>2023-08-01T09:35:54Z</dc:date>
    <item>
      <title>DAX function to count all other DAX functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-function-to-count-all-other-DAX-functions/m-p/3350820#M125819</link>
      <description>&lt;P&gt;Hi Community&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a report that has a visual table containing a set amount of DAX functions. Some produce results , were as others do not.&lt;/P&gt;&lt;P&gt;I would like a final DAX function that counts all other the other measures and provides a total count of how many produce a result.&lt;/P&gt;&lt;P&gt;Below is an example of how I see this working&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Reference #&lt;/TD&gt;&lt;TD&gt;Measure 1&lt;/TD&gt;&lt;TD&gt;Measure 2&lt;/TD&gt;&lt;TD&gt;Measure 3&lt;/TD&gt;&lt;TD&gt;Measure 4&lt;/TD&gt;&lt;TD&gt;Measure 5&lt;/TD&gt;&lt;TD&gt;Measure 6&lt;/TD&gt;&lt;TD&gt;How many of the other measures output a result&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;1234&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5432&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;5456&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;TD&gt;un checked&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;6787&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 10:51:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-function-to-count-all-other-DAX-functions/m-p/3350820#M125819</guid>
      <dc:creator>cottrera</dc:creator>
      <dc:date>2023-07-26T10:51:29Z</dc:date>
    </item>
    <item>
      <title>Re: DAX function to count all other DAX functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-function-to-count-all-other-DAX-functions/m-p/3351876#M125872</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="112497" data-lia-user-login="cottrera" class="lia-mention lia-mention-user"&gt;cottrera&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would suggest creating a measure that assembles the existing measures in a single-column table then counts the nonblank values.&lt;/P&gt;
&lt;P&gt;Here's how I would do it:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Nonblank Measure Count =
VAR MeasureValues = {
    [Measure 1],
    [Measure 2],
    [Measure 3],
    [Measure 4],
    [Measure 5],
    [Measure 6]
}
RETURN
    COUNTROWS (
        FILTER (
            MeasureValues,
            NOT ISBLANK ( [Value] )
        )
    )
&lt;/LI-CODE&gt;
&lt;P&gt;Does this work for you?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jul 2023 20:37:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-function-to-count-all-other-DAX-functions/m-p/3351876#M125872</guid>
      <dc:creator>OwenAuger</dc:creator>
      <dc:date>2023-07-26T20:37:09Z</dc:date>
    </item>
    <item>
      <title>Re: DAX function to count all other DAX functions</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-function-to-count-all-other-DAX-functions/m-p/3359388#M126281</link>
      <description>&lt;P&gt;Hi Owen thank you for responding so quickly and appologies for my late response. Your measure works fine thank you Richard&lt;span class="lia-unicode-emoji" title=":grinning_face:"&gt;😀&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Aug 2023 09:35:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-function-to-count-all-other-DAX-functions/m-p/3359388#M126281</guid>
      <dc:creator>cottrera</dc:creator>
      <dc:date>2023-08-01T09:35:54Z</dc:date>
    </item>
  </channel>
</rss>

