<?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: sum of blank rows across multiple values in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568146#M31226</link>
    <description>&lt;P&gt;Please provide sample data in usable format and show the expected outcome.&lt;/P&gt;</description>
    <pubDate>Thu, 24 Dec 2020 00:51:20 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2020-12-24T00:51:20Z</dc:date>
    <item>
      <title>sum of blank rows across multiple values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568110#M31223</link>
      <description>&lt;P&gt;I feel silly that I can not get this one. But I am trying to make a measure that will give a sum for how many blank rows that fall under the below Hybrid row. The customer and owner are simple, but the Hybrid ones span both the owner and customer columns&amp;nbsp;and for the life of me I cant get a measure to work correctly.&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 for any help.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Dec 2020 23:59:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568110#M31223</guid>
      <dc:creator>edrft_99</dc:creator>
      <dc:date>2020-12-23T23:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: sum of blank rows across multiple values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568146#M31226</link>
      <description>&lt;P&gt;Please provide sample data in usable format and show the expected outcome.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 00:51:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568146#M31226</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2020-12-24T00:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: sum of blank rows across multiple values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568395#M31230</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="254847" data-lia-user-login="edrft_99" class="lia-mention lia-mention-user"&gt;edrft_99&lt;/a&gt; ,The information you have provided is not making the problem clear to me. Can you please explain with an example. &lt;BR /&gt;Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.&lt;BR /&gt;&lt;STRONG&gt;Appreciate your Kudos.&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 03:04:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568395#M31230</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-12-24T03:04:48Z</dc:date>
    </item>
    <item>
      <title>Re: sum of blank rows across multiple values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568429#M31234</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for the response. Attached is a sample of the data and the expected output.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 03:35:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568429#M31234</guid>
      <dc:creator>edrft_99</dc:creator>
      <dc:date>2020-12-24T03:35:22Z</dc:date>
    </item>
    <item>
      <title>Re: sum of blank rows across multiple values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568492#M31239</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="254847" data-lia-user-login="edrft_99" class="lia-mention lia-mention-user"&gt;edrft_99&lt;/a&gt; , You can have measures like these&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Owner Responsibility = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Owner"))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Owner Implementation Missing = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Owner" &amp;amp;&amp;amp; isblank(Table[Owner Implementation])))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Owner Implementation Missing = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Owner" &amp;amp;&amp;amp; isblank(Table[Owner Test])))&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Customer Responsibility = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Customer"))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Customer Implementation Missing = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Customer" &amp;amp;&amp;amp; isblank(Table[Customer Implementation])))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Customer Implementation Missing = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Customer" &amp;amp;&amp;amp; isblank(Table[Customer Test])))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Others you can create with help of these&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 05:32:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1568492#M31239</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-12-24T05:32:02Z</dc:date>
    </item>
    <item>
      <title>Re: sum of blank rows across multiple values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1569053#M31251</link>
      <description>&lt;P&gt;Thank you for that.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I was able to get those measures fairly eaisly, the one I was having issue with was the Dual Responsobility. I know the best way is a filter, I am just lost in the sauce on that one.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 12:28:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1569053#M31251</guid>
      <dc:creator>edrft_99</dc:creator>
      <dc:date>2020-12-24T12:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: sum of blank rows across multiple values</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1569370#M31267</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="254847" data-lia-user-login="edrft_99" class="lia-mention lia-mention-user"&gt;edrft_99&lt;/a&gt; , to me these seem like&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Dual Responsibility = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Dual"))&lt;BR /&gt;Owner Implementation Missing = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Dual" &amp;amp;&amp;amp; isblank(Table[Owner Implementation])))&lt;BR /&gt;Owner Implementation Missing = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Dual" &amp;amp;&amp;amp; isblank(Table[Owner Test])))&lt;/P&gt;
&lt;P&gt;Customer Implementation Missing = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Dual" &amp;amp;&amp;amp; isblank(Table[Customer Implementation])))&lt;BR /&gt;Customer Implementation Missing = calculate(count(Table[Responsibility]), filter(Table, Table[Responsibility] = "Dual" &amp;amp;&amp;amp; isblank(Table[Customer Test])))&lt;/P&gt;</description>
      <pubDate>Thu, 24 Dec 2020 17:43:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/sum-of-blank-rows-across-multiple-values/m-p/1569370#M31267</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2020-12-24T17:43:02Z</dc:date>
    </item>
  </channel>
</rss>

