<?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: DAX formula to calculate Allocated Revenue based on last year total revenue in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773430#M3792</link>
    <description>I'll do that for you but you have to attach a file where you have some example data.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;Darek</description>
    <pubDate>Thu, 22 Aug 2019 17:27:31 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-08-22T17:27:31Z</dc:date>
    <item>
      <title>DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773391#M3780</link>
      <description>&lt;P&gt;I want to create a DAX formula as follows&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have 4 columns Deal#, Unit, Year, Proposed Budget.&amp;nbsp; I want to allocate revenue based on the % increase between last year total proposed budget and this year propose budget.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Say&amp;nbsp;&lt;/P&gt;&lt;P&gt;2017 Proposed Budget was $115,000 and&lt;/P&gt;&lt;P&gt;2018 Proposed Budget was $125,000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;% increase is 8.70%&lt;/P&gt;&lt;P&gt;(125000-115000)/115000&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, for 2018 I have to allocate revenue as follows&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;(1 + 0.0870) * 2018 Proposed Budget&amp;nbsp;&lt;/P&gt;&lt;P&gt;1.0870 * Each unit proposed budget&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried this but it did not work.&amp;nbsp; I have many deals&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Created four measures&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1)&lt;/P&gt;&lt;P&gt;&amp;nbsp; TotalProposedBudget =&amp;nbsp;&lt;SPAN&gt;SUM(Contract[ProposedBudget])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2)&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;TotalProposedBudgetLY= CALCULATE(Contract[TotalProposedBudget],SAMEPERIODLASTYEAR(Contract[contractenddate].[Date]))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;3)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Delta TY &amp;amp; LY = [TotalProposedBudget ] - [TotalProposedBudgetLY]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;4)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;% Delta = [Delta TY &amp;amp; LY] / [TotalProposedBudget ]&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;The calculation is done at the row level.&amp;nbsp; It is not an aggregate of the Total for the year.&amp;nbsp; Please help&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 16:49:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773391#M3780</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T16:49:11Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773408#M3784</link>
      <description>It looks like you need a calculated column in your table, Allocated Revenue. So, a question is: Why don't you use Power Query?&lt;BR /&gt;&lt;BR /&gt;Unless I miss something...&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;Darek</description>
      <pubDate>Thu, 22 Aug 2019 17:10:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773408#M3784</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T17:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773410#M3785</link>
      <description>&lt;P&gt;I tried using a calculated column but it sum the entire table I need it to sum only by deal#, and last year.&amp;nbsp; I am using Power BI for a visualization.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 17:14:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773410#M3785</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T17:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773416#M3788</link>
      <description>I said POWER QUERY. Not DAX.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;Darek</description>
      <pubDate>Thu, 22 Aug 2019 17:21:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773416#M3788</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T17:21:28Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773417#M3789</link>
      <description>&lt;P&gt;I am new at DAX and I am having difficulties unterstanding the use of filters at the row level.&amp;nbsp; How can I define a filter at the row level.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 17:21:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773417#M3789</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T17:21:46Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773422#M3790</link>
      <description>You should forget DAX and jump into Power Query. This is the best advice I can give you. DAX is not a tool to do this kind of stuff unless... you want to have nightmares.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;Darek</description>
      <pubDate>Thu, 22 Aug 2019 17:23:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773422#M3790</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T17:23:39Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773427#M3791</link>
      <description>&lt;P&gt;Thanks for your advise.&amp;nbsp; But how would I do that in power query.&amp;nbsp; I will try it.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 17:26:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773427#M3791</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T17:26:16Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773430#M3792</link>
      <description>I'll do that for you but you have to attach a file where you have some example data.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;Darek</description>
      <pubDate>Thu, 22 Aug 2019 17:27:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773430#M3792</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T17:27:31Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773437#M3793</link>
      <description>&lt;P&gt;&lt;A title="Allocated Report" href="https://app.powerbi.com/groups/51b8fe5d-7153-43e5-b0bd-82d23f638902/reports/29a5ec84-5356-4def-8064-8ab4592378da?ctid=f02b3a29-4c40-43d7-8e3b-ccebb6e2e557" target="_self"&gt;https://app.powerbi.com/groups/51b8fe5d-7153-43e5-b0bd-82d23f638902/reports/29a5ec84-5356-4def-8064-8ab4592378da?ctid=f02b3a29-4c40-43d7-8e3b-ccebb6e2e557&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to upload the report but I cannot do it.&amp;nbsp; here is the link to the report how can I share it with you.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 17:46:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773437#M3793</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T17:46:00Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773441#M3794</link>
      <description>You can paste a link to the file if you put it in OneDrive or Google Drive, or Dropbox. Don't forget to set the permissions correctly, so that I can access it.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D.</description>
      <pubDate>Thu, 22 Aug 2019 17:49:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773441#M3794</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T17:49:29Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773443#M3795</link>
      <description>By the way... I cannot access the report via the link.&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D.</description>
      <pubDate>Thu, 22 Aug 2019 17:51:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773443#M3795</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T17:51:16Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773472#M3800</link>
      <description>&lt;P&gt;&lt;A title="Report" href="https://drive.google.com/file/d/1LoLGTkkvuoigte0iaq-1Y1RrnTXXESIn/view?usp=sharing" target="_self"&gt;https://drive.google.com/file/d/1LoLGTkkvuoigte0iaq-1Y1RrnTXXESIn/view?usp=sharing&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for all your help.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 18:15:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773472#M3800</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T18:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773478#M3802</link>
      <description>Will get down to it when I'm back home in about an hour...&lt;BR /&gt;&lt;BR /&gt;Best&lt;BR /&gt;D.</description>
      <pubDate>Thu, 22 Aug 2019 18:21:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773478#M3802</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T18:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: DAX formula to calculate Allocated Revenue based on last year total revenue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773494#M3804</link>
      <description>&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Aug 2019 18:27:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-formula-to-calculate-Allocated-Revenue-based-on-last-year/m-p/773494#M3804</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-08-22T18:27:49Z</dc:date>
    </item>
  </channel>
</rss>

