<?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: Help Needed: Finding Minimum Growth Value in Power BI in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-Finding-Minimum-Growth-Value-in-Power-BI/m-p/4055471#M160941</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="559510" data-lia-user-login="Shahabh786" class="lia-mention lia-mention-user"&gt;Shahabh786&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Has your issue been resolved? If so, could you please mark your post as &lt;STRONG&gt;Answered&lt;/STRONG&gt;? Additionally, sharing the solution here would be greatly appreciated, as it can help others in the community who might encounter a similar problem. Thank you for your contribution!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
    <pubDate>Tue, 23 Jul 2024 05:57:24 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-07-23T05:57:24Z</dc:date>
    <item>
      <title>Help Needed: Finding Minimum Growth Value in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-Finding-Minimum-Growth-Value-in-Power-BI/m-p/4031635#M159541</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I need assistance with finding the minimum growth value for each region, regardless of the month or year. I'm currently calculating the growth compared to the same period last year using the following measure:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;% SPLY Growth = 
VAR _CurrentMonthUnit = [Sales Units]
VAR _SamePeriodLastYearUnits =
    CALCULATE ( [Sales Units], SAMEPERIODLASTYEAR ( 'Calendar'[Date] ) )
RETURN
    ( _CurrentMonthUnit - _SamePeriodLastYearUnits ) / _CurrentMonthUnit&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In my matrix visual, I have &lt;STRONG&gt;'Geography'[Region Name]&lt;/STRONG&gt; on rows and &lt;STRONG&gt;'Calendar'[Month Year]&lt;/STRONG&gt; on columns, with &lt;STRONG&gt;'% SPLY Growth'&lt;/STRONG&gt; as values. The &lt;STRONG&gt;'Month Year'&lt;/STRONG&gt; values are formatted like 'Mar-2024, Apr-2024, May-2024'.&lt;/P&gt;&lt;P&gt;I want to create another measure to find the minimum growth value for each region, regardless of the month or year. Here are the attempts I've made:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;1.&amp;nbsp;Using SUMMARIZECOLUMNS:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Min SPLY Growth = 
MINX(
    SUMMARIZECOLUMNS(
        'Geography'[Region Name],
        'Calendar'[Month Year],
        "@SPLY", [% SPLY Growth]
    ),
    [@SPLY]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Error:&lt;/STRONG&gt; "SummarizeColumns() and AddMissingItems() may not be used in this context."&lt;/FONT&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;2.&amp;nbsp;Using SUMMARIZE:&lt;BR /&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Min SPLY Growth = 
MINX(
    SUMMARIZE(
        'Sales',
        'Geography'[Region Name],
        'Calendar'[Month Year],
        "@SPLY", [% SPLY Growth]
    ),
    [@SPLY]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Error:&lt;/STRONG&gt; "Resources Exceeded. This visual has exceeded the available resources. Try filtering to decrease the amount of data displayed."&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone suggest an alternative solution to find the minimum growth value for each region?&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jul 2024 04:51:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-Finding-Minimum-Growth-Value-in-Power-BI/m-p/4031635#M159541</guid>
      <dc:creator>Shahabh786</dc:creator>
      <dc:date>2024-07-09T04:51:34Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed: Finding Minimum Growth Value in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-Finding-Minimum-Growth-Value-in-Power-BI/m-p/4033365#M159667</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="559510" data-lia-user-login="Shahabh786" class="lia-mention lia-mention-user"&gt;Shahabh786&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please &lt;STRONG&gt;update&lt;/STRONG&gt; the formula of measure [Min SPLY Growth] as below and check if it can return the expected result.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Min SPLY Growth = MINX ( ALL ( 'Calendar'[Month Year] ), [% SPLY Growth] )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If the above one can't help you figure out, please&amp;nbsp;provide some&amp;nbsp;&lt;STRONG&gt;raw data&lt;/STRONG&gt;&amp;nbsp;in your table (&lt;EM&gt;&lt;STRONG&gt;exclude&amp;nbsp;sensitive&amp;nbsp;data&lt;/STRONG&gt;&lt;/EM&gt;) with&amp;nbsp;&lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;Text&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;format&amp;nbsp;and your&amp;nbsp;&lt;STRONG&gt;expected result&lt;/STRONG&gt;&amp;nbsp;with backend logic and special examples. It would be helpful to find out the solution. You can refer the following link to share the required info:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FCommunity-Blog%2FHow-to-provide-sample-data-in-the-Power-BI-Forum%2Fba-p%2F963216&amp;amp;data=05%7C02%7Cv-yiruan%40microsoft.com%7Cfe6489193a1b4b3b2c3108dc521fb7ce%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638475543436019904%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=v%2BEWR63B7CH%2BV5oWqwumB56nQFj9ualyOO61gu8e5SI%3D&amp;amp;reserved=0" target="_blank" rel="noopener nofollow noreferrer"&gt;How to provide sample data in the Power BI Forum&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;And&lt;FONT color="#FF0000"&gt;&amp;nbsp;&lt;STRONG&gt;it is better&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;if you can share a&amp;nbsp;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;simplified&lt;/STRONG&gt;&amp;nbsp;&lt;/FONT&gt;pbix file. You can refer the following link to upload the file to the community. Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;A href="https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fcommunity.powerbi.com%2Ft5%2FDesktop%2FHow-to-upload-PBI-in-Community%2Fm-p%2F1672886&amp;amp;data=05%7C02%7Cv-yiruan%40microsoft.com%7Cfe6489193a1b4b3b2c3108dc521fb7ce%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C638475543436025251%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C0%7C%7C%7C&amp;amp;sdata=VsmePB5Y0qB9BNuqnghHQeZSKzaaithvIv0fLr7iulE%3D&amp;amp;reserved=0" target="_blank" rel="noopener nofollow noreferrer"&gt;How to upload PBI in Community&lt;/A&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Best Regards&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Jul 2024 01:32:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-Finding-Minimum-Growth-Value-in-Power-BI/m-p/4033365#M159667</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-10T01:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed: Finding Minimum Growth Value in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-Finding-Minimum-Growth-Value-in-Power-BI/m-p/4055471#M160941</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="559510" data-lia-user-login="Shahabh786" class="lia-mention lia-mention-user"&gt;Shahabh786&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Has your issue been resolved? If so, could you please mark your post as &lt;STRONG&gt;Answered&lt;/STRONG&gt;? Additionally, sharing the solution here would be greatly appreciated, as it can help others in the community who might encounter a similar problem. Thank you for your contribution!&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Best Regards&lt;/P&gt;</description>
      <pubDate>Tue, 23 Jul 2024 05:57:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-Finding-Minimum-Growth-Value-in-Power-BI/m-p/4055471#M160941</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-07-23T05:57:24Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed: Finding Minimum Growth Value in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-Finding-Minimum-Growth-Value-in-Power-BI/m-p/4092499#M162404</link>
      <description>&lt;P&gt;I was able to finally achive this using below workaround.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;ADDCOLUMNS (
                FILTER (
                    SUMMARIZE ( 'Sales', 'Calendar'[MonthYear] ),
                    [MonthYear] &amp;lt;&amp;gt; _CurrentMonthYear
                ),
                "@SPLM", [Monthly Growth %]
            )&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 09 Aug 2024 18:34:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-Finding-Minimum-Growth-Value-in-Power-BI/m-p/4092499#M162404</guid>
      <dc:creator>Shahabh786</dc:creator>
      <dc:date>2024-08-09T18:34:52Z</dc:date>
    </item>
  </channel>
</rss>

