<?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: Convert excel formula to DAX in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1437458#M26876</link>
    <description>&lt;P&gt;Yes I agree with you &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; it can't be called columns result on its column..&lt;BR /&gt;This is sad &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Oct 2020 04:49:10 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-10-16T04:49:10Z</dc:date>
    <item>
      <title>Convert excel formula to DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1435388#M26812</link>
      <description>&lt;P&gt;I really really need your help converting this excel formula to Dax using columns only.&lt;BR /&gt;&lt;BR /&gt;1. (Weight * PreviousMonth of Actual Volume) (1-Weight) * SmoothedForecast := These are common formulas&lt;BR /&gt;2. If 1/1/2019 is no previous month leave it blank&lt;BR /&gt;3. If date is on 2/1/2019 the value should be the 1/1/2019 as is.&lt;BR /&gt;4. So on my number 1 senario will perform the formulas for entire row&lt;BR /&gt;&lt;BR /&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="264353" data-lia-user-login="wdx223_Daniel" class="lia-mention lia-mention-user"&gt;wdx223_Daniel&lt;/a&gt;&amp;nbsp; apologies to mention you but I also need your experties &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 08:46:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1435388#M26812</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-15T08:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Convert excel formula to DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1435488#M26814</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp; please try the code like this, you might do some adjustments to fit in your model&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="csharp"&gt;SmoothedForecast:=if(isempty(previousmonth(dates[date],-1,month)),blank(),if([Previousmonth],[weight]*[auctualAmount]+(1-[weight])*[Previousmonth], [auctualAmount]))&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 15 Oct 2020 09:13:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1435488#M26814</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2020-10-15T09:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: Convert excel formula to DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1435592#M26818</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;PRE&gt;SmoothedForecast:=if(isempty(previousmonth(dates[date],-1,month)),blank(),if([Previousmonth],[weight]*[auctualAmount]+(1-[weight])*[Previousmonth], [auctualAmount]))&lt;/PRE&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="264353" data-lia-user-login="wdx223_Daniel" class="lia-mention lia-mention-user"&gt;wdx223_Daniel&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;The problems are I can't call "SmoothedForecast when the next nested if for blank forcasted Smoothed is blank. that should be the actual as is result.&lt;/P&gt;</description>
      <pubDate>Thu, 15 Oct 2020 09:52:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1435592#M26818</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-15T09:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Convert excel formula to DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1437037#M26861</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp; i think you need a rescusion, but it's sadly that dax can not do it well.&amp;nbsp; measuse can not reference itself.&lt;/P&gt;&lt;P&gt;probably you need to find another way to solve this.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 00:30:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1437037#M26861</guid>
      <dc:creator>wdx223_Daniel</dc:creator>
      <dc:date>2020-10-16T00:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Convert excel formula to DAX</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1437458#M26876</link>
      <description>&lt;P&gt;Yes I agree with you &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt; it can't be called columns result on its column..&lt;BR /&gt;This is sad &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Oct 2020 04:49:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Convert-excel-formula-to-DAX/m-p/1437458#M26876</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-10-16T04:49:10Z</dc:date>
    </item>
  </channel>
</rss>

