<?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 with DAX Measure for Projecting 2025 Data in Power BI in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4683617#M179377</link>
    <description>&lt;P&gt;Thank you for your responses. I apologize for my delayed reply; I was occupied with a work issue that took up most of the past couple of weeks. The suggestions you provided were accepted by the Power BI system, but the results still did not meet desired expectations. I suspect the issue lies in the raw data I am compiling. I will mark both suggestions as "accepted solutions."&lt;/P&gt;&lt;P&gt;Regarding the report I was building, I have been informed that the individual tab where I was using these equations is no longer needed. In my own time, I will attempt to get the now-hidden tab in the report to work, to satisfy my curiosity. Hopefully, I will identify the issue in my raw data, and one or both of these solutions will yield the expected results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 07 May 2025 18:24:05 GMT</pubDate>
    <dc:creator>Peterjoin1</dc:creator>
    <dc:date>2025-05-07T18:24:05Z</dc:date>
    <item>
      <title>Help Needed with DAX Measure for Projecting 2025 Data in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4639895#M177643</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I'm working on a Power BI report and need some assistance with creating a DAX measure to project data for the year 2025. My dataset includes full-year data for 2023 and 2024, and partial data (3 months) for 2025. I want to calculate the cost per square foot for non-discretionary expenses, ensuring the measure works correctly for all years and projects the full-year value for 2025.&lt;/P&gt;&lt;P&gt;Here's what I'm trying to achieve:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Calculate the cost per square foot for non-discretionary expenses&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;For 2023 and 2024, use the total bill line amount divided by the total square feet.&lt;/LI&gt;&lt;LI&gt;For 2025, project the full-year value by multiplying the partial data by 4 (since I have data for 3 months).&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Current Measure&lt;/STRONG&gt;:&lt;/P&gt;&lt;PRE&gt;NonDiscretionaryCostPerSquareFoot = 
IF(
    MAX('Property Data - Combined'[Year]) = 2025,
    DIVIDE(
        CALCULATE(
            [ProjectedFullYearBillLineAmount],
            'Property Data - Combined'[Expense Type - CCNH Finance] = "Non Discretionary"
        ),
        SUM('Property Data - Combined'[Total Square Feet])
    ),
    DIVIDE(
        CALCULATE(
            [TotalBillLineAmount],
            'Property Data - Combined'[Expense Type - CCNH Finance] = "Non Discretionary"
        ),
        SUM('Property Data - Combined'[Total Square Feet])
    )
)&lt;/PRE&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Issue&lt;/STRONG&gt;:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;The measure is returning incorrect values for 2023 and 2024.&lt;/LI&gt;&lt;LI&gt;I need help ensuring the measure calculates correctly for all years and projects the full-year value for 2025.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Any guidance or suggestions on how to adjust the DAX formula to achieve this would be greatly appreciated!&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Sun, 06 Apr 2025 14:32:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4639895#M177643</guid>
      <dc:creator>Peterjoin1</dc:creator>
      <dc:date>2025-04-06T14:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed with DAX Measure for Projecting 2025 Data in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4639935#M177646</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1254637" data-lia-user-login="Peterjoin1" class="lia-mention lia-mention-user"&gt;Peterjoin1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please try the following:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;NonDiscretionaryCostPerSquareFoot =
VAR CurrentYear = SELECTEDVALUE('Property Data - Combined'[Year])
VAR TotalSqFt =
    CALCULATE(
        SUM('Property Data - Combined'[Total Square Feet])
    )
VAR TotalBillAmount =
    CALCULATE(
        [TotalBillLineAmount],
        'Property Data - Combined'[Expense Type - CCNH Finance] = "Non Discretionary"
    )
VAR ProjectedBillAmount2025 =
    CALCULATE(
        [TotalBillLineAmount],
        'Property Data - Combined'[Expense Type - CCNH Finance] = "Non Discretionary",
        'Property Data - Combined'[Year] = 2025
    ) * 4

RETURN
IF(
    CurrentYear = 2025,
    DIVIDE(ProjectedBillAmount2025, TotalSqFt),
    DIVIDE(TotalBillAmount, TotalSqFt)
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Sun, 06 Apr 2025 16:52:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4639935#M177646</guid>
      <dc:creator>Sahir_Maharaj</dc:creator>
      <dc:date>2025-04-06T16:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed with DAX Measure for Projecting 2025 Data in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4641957#M177754</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;SPAN&gt;Sahir, the equation was accepted but the results were not what I expected. I am going to look at my data set tomorrow and make sure the DAX I have made for combines are accurate. That could be the reason for the incorrect return data. I will report back later this week.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Apr 2025 21:53:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4641957#M177754</guid>
      <dc:creator>Peterjoin1</dc:creator>
      <dc:date>2025-04-07T21:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed with DAX Measure for Projecting 2025 Data in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4647886#M177908</link>
      <description>&lt;P class="" data-start="323" data-end="507"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1254637" data-lia-user-login="Peterjoin1" class="lia-mention lia-mention-user"&gt;Peterjoin1&lt;/a&gt;,&lt;/P&gt;
&lt;P class="" data-start="323" data-end="507"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, thanks to&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="501067" data-lia-user-login="Sahir_Maharaj" class="lia-mention lia-mention-user"&gt;Sahir_Maharaj&lt;/a&gt;,&amp;nbsp; for the prompt and helpful response.&lt;/P&gt;
&lt;P class="" data-start="323" data-end="507"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="323" data-end="507"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="323" data-end="507"&gt;We just wanted to follow up and see if there’s anything else you need from our side while you’re reviewing the data. Please feel free to reach out if you need any further assistance.&lt;/P&gt;
&lt;P class="" data-start="509" data-end="641"&gt;If super users previous response helped, kindly consider marking it as &lt;STRONG data-start="572" data-end="596"&gt;Accepted as Solution&lt;/STRONG&gt; and click &lt;STRONG data-start="607" data-end="614"&gt;Yes&lt;/STRONG&gt; if you found it helpful.&lt;/P&gt;
&lt;P class="" data-start="509" data-end="641"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P class="" data-start="509" data-end="641"&gt;Regards,&lt;/P&gt;
&lt;P class="" data-start="509" data-end="641"&gt;Prasanna kumar&lt;/P&gt;</description>
      <pubDate>Fri, 11 Apr 2025 03:11:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4647886#M177908</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-11T03:11:31Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed with DAX Measure for Projecting 2025 Data in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4652678#M178113</link>
      <description>&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1254637" data-lia-user-login="Peterjoin1" class="lia-mention lia-mention-user"&gt;Peterjoin1&lt;/a&gt;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;We wanted to kindly check in to see if everything is working as expected after trying the suggested solution. If there’s anything else we can assist with, please don’t hesitate to ask.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;If the issue is resolved, we’d appreciate it if you could mark the helpful reply as &lt;SPAN&gt;Accepted Solution&lt;/SPAN&gt; — it helps others who might face a similar issue.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Warm regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 03:09:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4652678#M178113</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-15T03:09:48Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed with DAX Measure for Projecting 2025 Data in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4654518#M178180</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Prasanna, really appreciate the follow up. Unfortunately I have been pulled into an issue that has taken all my time and I have not been able to review my Power BI raw data . The code I was given was accepted by the system but the return was not the full amount I was expecting. Since the code is working I suspect its in my data source that is causing the wrong return. I hope to have more time later this week to dig into my data and hopefully the command I was given works and returns the desired results. If it does I'll update the ticket to accept solution&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Apr 2025 18:31:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4654518#M178180</guid>
      <dc:creator>Peterjoin1</dc:creator>
      <dc:date>2025-04-15T18:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed with DAX Measure for Projecting 2025 Data in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4664137#M178627</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1254637" data-lia-user-login="Peterjoin1" class="lia-mention lia-mention-user"&gt;Peterjoin1&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for the update.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just a gentle reminder,&amp;nbsp; whenever you get a chance to revisit the issue, if the provided solution ends up working for you, we’d really appreciate it if you could mark it as the Accepted Solution. If you discover a different fix, feel free to share that as well.&lt;/P&gt;
&lt;P&gt;Closing the loop helps others in the community who might be facing similar challenges. Thanks again for your time and feedback.&lt;/P&gt;
&lt;P&gt;Thank you &amp;amp; regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 02:47:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4664137#M178627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-04-23T02:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed with DAX Measure for Projecting 2025 Data in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4676836#M179107</link>
      <description>&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1254637" data-lia-user-login="Peterjoin1" class="lia-mention lia-mention-user"&gt;Peterjoin1&lt;/a&gt;,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Just a gentle reminder — has your issue been resolved? If so, we’d be grateful if you could mark the solution that worked as &lt;SPAN&gt;Accepted Solution&lt;/SPAN&gt;, or feel free to share your own if you found a different fix.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;This not only closes the loop on your query but also helps others in the community solve similar issues faster.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Thank you for your time and feedback!&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Best,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;"&gt;Prasanna Kumar&lt;/P&gt;</description>
      <pubDate>Fri, 02 May 2025 06:03:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4676836#M179107</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-05-02T06:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: Help Needed with DAX Measure for Projecting 2025 Data in Power BI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4683617#M179377</link>
      <description>&lt;P&gt;Thank you for your responses. I apologize for my delayed reply; I was occupied with a work issue that took up most of the past couple of weeks. The suggestions you provided were accepted by the Power BI system, but the results still did not meet desired expectations. I suspect the issue lies in the raw data I am compiling. I will mark both suggestions as "accepted solutions."&lt;/P&gt;&lt;P&gt;Regarding the report I was building, I have been informed that the individual tab where I was using these equations is no longer needed. In my own time, I will attempt to get the now-hidden tab in the report to work, to satisfy my curiosity. Hopefully, I will identify the issue in my raw data, and one or both of these solutions will yield the expected results.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 May 2025 18:24:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Help-Needed-with-DAX-Measure-for-Projecting-2025-Data-in-Power/m-p/4683617#M179377</guid>
      <dc:creator>Peterjoin1</dc:creator>
      <dc:date>2025-05-07T18:24:05Z</dc:date>
    </item>
  </channel>
</rss>

