<?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: need to calculate plan % indivually from the available column &amp;quot;Planned **bleep**&amp;quot; in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-to-calculate-plan-indivually-from-the-available-column-quot/m-p/4376696#M173768</link>
    <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="908376" data-lia-user-login="BilalMakki00" class="lia-mention lia-mention-user"&gt;BilalMakki00&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am glad to help you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try the following DAX:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Plan % Indivually2 = 
VAR _ProjectNo = Major_SCurve[Project NO]
VAR _filterforcurproject = FILTER(Major_SCurve, Major_SCurve[Project NO] = _ProjectNo)
VAR _firstdateofproject = MINX(_filterforcurproject, Major_SCurve[Date])
VAR _previousdate = 
    CALCULATE(
        MAX(Major_SCurve[Date]),
        FILTER(
            _filterforcurproject,
            Major_SCurve[Date] &amp;lt; EARLIER(Major_SCurve[Date])
        )
    )
VAR _previouspercentage = 
    CALCULATE(
        MAX(Major_SCurve[Planned Cum.]),
        FILTER(
            _filterforcurproject,
            Major_SCurve[Date] = _previousdate
        )
    )
RETURN 
    IF(
        Major_SCurve[Date] = _firstdateofproject,
        Major_SCurve[Planned Cum.],
        Major_SCurve[Planned Cum.] - _previouspercentage
    )&lt;/LI-CODE&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;I hope you find the above DAX helpful. If for solving your issue, please share more details and we will try our best to solve your issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Fen Ling,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;&lt;/EM&gt;&lt;SPAN&gt;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 23 Jan 2025 02:12:37 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-01-23T02:12:37Z</dc:date>
    <item>
      <title>need to calculate plan % indivually from the available column "Planned **bleep**"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-to-calculate-plan-indivually-from-the-available-column-quot/m-p/4375203#M173705</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i need to calculate plan % indivually from the available column "Planned **bleep**". and every project start should same value as in "planned **bleep**" and for next result it should be (next date-prev). need to modify this dax in the availble powerbi file attched in the link.&lt;BR /&gt;&lt;A href="https://jasarapmc-my.sharepoint.com/:u:/p/bilal_makki/EXIqj6hm7s1JtEnOQtA-5c8Bdi-VIa7VQIGHKsxFrLS9Tw?e=OJ0ZGF" target="_self"&gt;https://jasarapmc-my.sharepoint.com/:u:/p/bilal_makki/EXIqj6hm7s1JtEnOQtA-5c8Bdi-VIa7VQIGHKsxFrLS9Tw?e=OJ0ZGF&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;!-- StartFragment  --&gt;&lt;A href="https://jasarapmc-my.sharepoint.com/:u:/p/bilal_makki/EXIqj6hm7s1JtEnOQtA-5c8Bdi-VIa7VQIGHKsxFrLS9Tw?e=OJ0ZGF" target="_blank"&gt;biweekly %.pbix&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2025 08:11:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-to-calculate-plan-indivually-from-the-available-column-quot/m-p/4375203#M173705</guid>
      <dc:creator>BilalMakki00</dc:creator>
      <dc:date>2025-01-22T08:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: need to calculate plan % indivually from the available column "Planned **bleep**"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-to-calculate-plan-indivually-from-the-available-column-quot/m-p/4376696#M173768</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="908376" data-lia-user-login="BilalMakki00" class="lia-mention lia-mention-user"&gt;BilalMakki00&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am glad to help you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try the following DAX:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Plan % Indivually2 = 
VAR _ProjectNo = Major_SCurve[Project NO]
VAR _filterforcurproject = FILTER(Major_SCurve, Major_SCurve[Project NO] = _ProjectNo)
VAR _firstdateofproject = MINX(_filterforcurproject, Major_SCurve[Date])
VAR _previousdate = 
    CALCULATE(
        MAX(Major_SCurve[Date]),
        FILTER(
            _filterforcurproject,
            Major_SCurve[Date] &amp;lt; EARLIER(Major_SCurve[Date])
        )
    )
VAR _previouspercentage = 
    CALCULATE(
        MAX(Major_SCurve[Planned Cum.]),
        FILTER(
            _filterforcurproject,
            Major_SCurve[Date] = _previousdate
        )
    )
RETURN 
    IF(
        Major_SCurve[Date] = _firstdateofproject,
        Major_SCurve[Planned Cum.],
        Major_SCurve[Planned Cum.] - _previouspercentage
    )&lt;/LI-CODE&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;I hope you find the above DAX helpful. If for solving your issue, please share more details and we will try our best to solve your issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope my suggestions give you good ideas, if you have any more questions, please clarify in a follow-up reply.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Best Regards,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Fen Ling,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;&lt;/EM&gt;&lt;SPAN&gt;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 02:12:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-to-calculate-plan-indivually-from-the-available-column-quot/m-p/4376696#M173768</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-23T02:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: need to calculate plan % indivually from the available column "Planned **bleep**"</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-to-calculate-plan-indivually-from-the-available-column-quot/m-p/4391184#M174326</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp; thank u very much, it working fine for plan % indiviually&amp;nbsp; , but same formula when i replace with actual % indiually , in the last cell it's reflecting the same % which is not accurate, can modify this for avctual %?&lt;BR /&gt;like in the below picture , actual update is till 26 dec 2024, but in 9 jan 2025 it's showing same actual cummlaive value?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 02 Feb 2025 08:07:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/need-to-calculate-plan-indivually-from-the-available-column-quot/m-p/4391184#M174326</guid>
      <dc:creator>BilalMakki00</dc:creator>
      <dc:date>2025-02-02T08:07:43Z</dc:date>
    </item>
  </channel>
</rss>

