<?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: DIVIDE Measure Creating Blank Rows in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3991416#M154853</link>
    <description>&lt;P&gt;This seemed to resolve my issue but not sure if it's the most elegant approach.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 13 Jun 2024 14:45:20 GMT</pubDate>
    <dc:creator>delish68</dc:creator>
    <dc:date>2024-06-13T14:45:20Z</dc:date>
    <item>
      <title>DIVIDE Measure Creating Blank Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3991340#M154850</link>
      <description>&lt;P&gt;I have a calculation item that returns "change" or "growth" by subtracting prior year from current year and then dividing that by prior year. Pretty standard calculation. The problem is that when I add this to my matrix, it returns a bunch of empty rows.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FORMAT (DIVIDE (CALCULATE ( SELECTEDMEASURE (), 'Time Intelligence'[Time Calc] = "YTD" ) - CALCULATE ( SELECTEDMEASURE (), 'Time Intelligence'[Time Calc] = "PYTD" ),
CALCULATE ( SELECTEDMEASURE (), 'Time Intelligence'[Time Calc] = "PYTD" )), "Percent")&lt;/LI-CODE&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;&lt;P&gt;This is what it looks like without the calculation item:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And this is what it looks like when I add the growth calculation item:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It looks like it has to do with the FORMAT function. If so, is there a way to format this as a percent without the function returning a bunch of blanks and expanding this matrix unnecessarily?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 14:16:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3991340#M154850</guid>
      <dc:creator>delish68</dc:creator>
      <dc:date>2024-06-13T14:16:00Z</dc:date>
    </item>
    <item>
      <title>Re: DIVIDE Measure Creating Blank Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3991383#M154851</link>
      <description>&lt;P&gt;Have you tried using the ribbon to format the measure as a percent?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 14:32:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3991383#M154851</guid>
      <dc:creator>aduguid</dc:creator>
      <dc:date>2024-06-13T14:32:45Z</dc:date>
    </item>
    <item>
      <title>Re: DIVIDE Measure Creating Blank Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3991406#M154852</link>
      <description>&lt;P&gt;I don't believe that can be done with Calculation Groups/Items.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 14:41:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3991406#M154852</guid>
      <dc:creator>delish68</dc:creator>
      <dc:date>2024-06-13T14:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: DIVIDE Measure Creating Blank Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3991416#M154853</link>
      <description>&lt;P&gt;This seemed to resolve my issue but not sure if it's the most elegant approach.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2024 14:45:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3991416#M154853</guid>
      <dc:creator>delish68</dc:creator>
      <dc:date>2024-06-13T14:45:20Z</dc:date>
    </item>
    <item>
      <title>Re: DIVIDE Measure Creating Blank Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3999331#M155720</link>
      <description>&lt;P&gt;Hi,&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="665894" data-lia-user-login="delish68" class="lia-mention lia-mention-user"&gt;delish68&lt;/a&gt;&amp;nbsp;Hello,&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="81736" data-lia-user-login="aduguid" class="lia-mention lia-mention-user"&gt;aduguid&lt;/a&gt;&amp;nbsp;,thanks for your concern about this issue.&lt;BR /&gt;Very glad to see that you have found a suitable solution and shared it, I think the dax code you have given is easy to understand and is a good solution.&lt;BR /&gt;Thank you for sharing it as it will help more users on the forum who have similar problems.&lt;BR /&gt;You can mark your own suggestions as solutions.&lt;/P&gt;
&lt;P&gt;I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Carson Jian&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jun 2024 04:03:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/3999331#M155720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-06-19T04:03:19Z</dc:date>
    </item>
    <item>
      <title>Re: DIVIDE Measure Creating Blank Rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/4024903#M158876</link>
      <description>&lt;P&gt;Hi,&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="665894" data-lia-user-login="delish68" class="lia-mention lia-mention-user"&gt;delish68&lt;/a&gt; .&lt;/P&gt;
&lt;P&gt;If you have found suitable solutions, please share them as it will help more users with similar problems. &lt;BR /&gt;Or you can mark the valid suggestions provided by other users as solutions&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Carson Jian,&lt;/P&gt;
&lt;P&gt;If this post&lt;EM&gt;&lt;STRONG&gt; helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2024 10:25:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DIVIDE-Measure-Creating-Blank-Rows/m-p/4024903#M158876</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-04T10:25:18Z</dc:date>
    </item>
  </channel>
</rss>

