<?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: The syntax for 'Level' is incorrect. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4670480#M178892</link>
    <description>&lt;P&gt;Thankyou,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;, for your response.&lt;BR /&gt;&lt;BR /&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="771185" data-lia-user-login="AzimiJ" class="lia-mention lia-mention-user"&gt;AzimiJ&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are pleased to learn that your issue has been resolved. Kindly mark the response that resolved your query as the accepted solution, as this will help other community members facing similar challenges to find solutions more effectively. Please feel free to continue using the Fabric Community for any further assistance with your queries.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Apr 2025 09:49:10 GMT</pubDate>
    <dc:creator>v-pnaroju-msft</dc:creator>
    <dc:date>2025-04-28T09:49:10Z</dc:date>
    <item>
      <title>The syntax for 'Level' is incorrect.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4665409#M178677</link>
      <description>&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Hello all,&lt;BR /&gt;&lt;BR /&gt;Please help me know the issue and fix it. Thank you all!&lt;BR /&gt;&lt;BR /&gt;ProjectedTF =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Alpha&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;0.6&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Beta&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;0.4&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Last4Actual&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Last4ActualWednesdays]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'DateTable'&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;LastYearAvg&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[LastYearSameWeekday]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'DateTable'&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Level&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;Alpha&lt;/SPAN&gt;&lt;SPAN&gt; * &lt;/SPAN&gt;&lt;SPAN&gt;Last4Actual&lt;/SPAN&gt;&lt;SPAN&gt; + (&lt;/SPAN&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;SPAN&gt; - &lt;/SPAN&gt;&lt;SPAN&gt;Alpha&lt;/SPAN&gt;&lt;SPAN&gt;) * &lt;/SPAN&gt;&lt;SPAN&gt;LastYearAvg&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;Trend&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;Beta&lt;/SPAN&gt;&lt;SPAN&gt; * (&lt;/SPAN&gt;&lt;SPAN&gt;Last4Actual&lt;/SPAN&gt;&lt;SPAN&gt; - &lt;/SPAN&gt;&lt;SPAN&gt;LastYearAvg&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;Level&lt;/SPAN&gt;&lt;SPAN&gt; + &lt;/SPAN&gt;&lt;SPAN&gt;Trend&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;---&lt;BR /&gt;The syntax for 'Level' is incorrect. (DAX(VAR Alpha = 0.6VAR Beta = 0.4VAR Last4Actual = CALCULATE([Last4ActualWednesdays], ALL('DateTable'))VAR LastYearAvg = CALCULATE([LastYearSameWeekday], ALL('DateTable'))VAR Level = Alpha * Last4Actual + (1 - Alpha) * LastYearAvgVAR Trend = Beta * (Last4Actual - LastYearAvg)RETURN Level + Trend)).&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 17:02:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4665409#M178677</guid>
      <dc:creator>AzimiJ</dc:creator>
      <dc:date>2025-04-23T17:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: The syntax for 'Level' is incorrect.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4665513#M178682</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 19:06:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4665513#M178682</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-04-23T19:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: The syntax for 'Level' is incorrect.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4665542#M178683</link>
      <description>&lt;P&gt;Thank you Ibendlin,&lt;BR /&gt;I have changed Level and Trend to TheLevel and TheTrend, issue resolved.&lt;BR /&gt;&lt;BR /&gt;Best!&lt;/P&gt;</description>
      <pubDate>Wed, 23 Apr 2025 19:35:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4665542#M178683</guid>
      <dc:creator>AzimiJ</dc:creator>
      <dc:date>2025-04-23T19:35:56Z</dc:date>
    </item>
    <item>
      <title>Re: The syntax for 'Level' is incorrect.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4670480#M178892</link>
      <description>&lt;P&gt;Thankyou,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;, for your response.&lt;BR /&gt;&lt;BR /&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="771185" data-lia-user-login="AzimiJ" class="lia-mention lia-mention-user"&gt;AzimiJ&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are pleased to learn that your issue has been resolved. Kindly mark the response that resolved your query as the accepted solution, as this will help other community members facing similar challenges to find solutions more effectively. Please feel free to continue using the Fabric Community for any further assistance with your queries.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 09:49:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4670480#M178892</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-04-28T09:49:10Z</dc:date>
    </item>
    <item>
      <title>Re: The syntax for 'Level' is incorrect.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4676262#M179091</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="771185" data-lia-user-login="AzimiJ" class="lia-mention lia-mention-user"&gt;AzimiJ&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are pleased to learn that your issue has been resolved. Kindly mark the response that resolved your query as the accepted solution, as this will help other community members facing similar challenges to find solutions more effectively. Please feel free to continue using the Fabric Community for any further assistance with your queries.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 01 May 2025 17:42:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4676262#M179091</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-05-01T17:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: The syntax for 'Level' is incorrect.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4678997#M179215</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="771185" data-lia-user-login="AzimiJ" class="lia-mention lia-mention-user"&gt;AzimiJ&lt;/a&gt;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are pleased to learn that your issue has been resolved. Kindly mark the response that resolved your query as the accepted solution, as this will help other community members facing similar challenges to find solutions more effectively. Please feel free to continue using the Fabric Community for any further assistance with your queries.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 04 May 2025 18:42:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/The-syntax-for-Level-is-incorrect/m-p/4678997#M179215</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-05-04T18:42:00Z</dc:date>
    </item>
  </channel>
</rss>

