<?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 Get % Value on a Specific Data Date. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-Value-on-a-Specific-Data-Date/m-p/3128808#M111232</link>
    <description>&lt;P&gt;Hello Everyone&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am quite new in Power BI &amp;amp; got into a situation where I need help from the community...&lt;/P&gt;&lt;P&gt;Here is the situation;&lt;/P&gt;&lt;P&gt;I need to calculate the %age on the basis of the Data Date filter (I cannot use the sliding slicer due to design restrictions).&lt;/P&gt;&lt;P&gt;Col: Sum of BL Project Total Cost... I need its SUM in all situations only but I need Col: BL Cost Curve to change as per the selected Data Date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;If I select Data Date July 3 2020 then I'll get the value that is = 2,707,726.08/51,848,107 =&amp;nbsp;5.22%.&lt;/P&gt;&lt;P&gt;(BL S Curve is just a running total BL Project Cost.)&lt;/P&gt;&lt;P&gt;Attached is the snip for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Yamin&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Mar 2023 17:45:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-03-13T17:45:46Z</dc:date>
    <item>
      <title>Get % Value on a Specific Data Date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-Value-on-a-Specific-Data-Date/m-p/3128808#M111232</link>
      <description>&lt;P&gt;Hello Everyone&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am quite new in Power BI &amp;amp; got into a situation where I need help from the community...&lt;/P&gt;&lt;P&gt;Here is the situation;&lt;/P&gt;&lt;P&gt;I need to calculate the %age on the basis of the Data Date filter (I cannot use the sliding slicer due to design restrictions).&lt;/P&gt;&lt;P&gt;Col: Sum of BL Project Total Cost... I need its SUM in all situations only but I need Col: BL Cost Curve to change as per the selected Data Date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;If I select Data Date July 3 2020 then I'll get the value that is = 2,707,726.08/51,848,107 =&amp;nbsp;5.22%.&lt;/P&gt;&lt;P&gt;(BL S Curve is just a running total BL Project Cost.)&lt;/P&gt;&lt;P&gt;Attached is the snip for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Yamin&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 17:45:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-Value-on-a-Specific-Data-Date/m-p/3128808#M111232</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-03-13T17:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Get % Value on a Specific Data Date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-Value-on-a-Specific-Data-Date/m-p/3128847#M111238</link>
      <description>&lt;P&gt;What is your BL Curve measure?&amp;nbsp; The Table names?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What you want to do, is create a measure using a Summarized function to summarize the BL Curve grouped by Dates.&amp;nbsp; Then filter the summarized table to the selected date or default it to the latest date.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;% of BL S Curve = 
VAR tableVariableResult = MAXX(FILTER(SUMMARIZE(ALL(&amp;lt;table&amp;gt;),&amp;lt;GroupByDate&amp;gt;,"Name Given",[BL S Curve]),&amp;lt;datefield&amp;gt;=&amp;lt;GroupByDate&amp;gt;)),"Name Given")

RETURN DIVIDE([BL S Curve],tableVariableResult)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 18:44:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-Value-on-a-Specific-Data-Date/m-p/3128847#M111238</guid>
      <dc:creator>BrianConnelly</dc:creator>
      <dc:date>2023-03-13T18:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Get % Value on a Specific Data Date.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-Value-on-a-Specific-Data-Date/m-p/3128943#M111250</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please try&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;% BL Cost Curve =&lt;BR /&gt;Divide (&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;[BL Cost Curve],&lt;BR /&gt;CALCULATE ( [Sum of BL Project Total Cost], ALL ( 'Date' ) )&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Mar 2023 18:37:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Get-Value-on-a-Specific-Data-Date/m-p/3128943#M111250</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2023-03-13T18:37:58Z</dc:date>
    </item>
  </channel>
</rss>

