<?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: Time Intelligence without Date Table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-Intelligence-without-Date-Table/m-p/3531314#M135681</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;I hope the below can provide some ideas on how to create a solution for your datamodel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use EOMONTH DAX function, and the description of the dax function's link is down below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/eomonth-function-dax?wt.mc_id=DP-MVP-5004989" target="_blank"&gt;EOMONTH function (DAX) - DAX | Microsoft Learn&lt;/A&gt;&lt;/P&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;LI-CODE lang="markup"&gt;Prev month sales measure: = 
VAR _previousmonthenddate =
    EOMONTH ( MAX ( Sales[Date] ), -1 )
RETURN
    SUMX (
        FILTER (
            ADDCOLUMNS ( ALL ( Sales ), "@monthenddate", EOMONTH ( Sales[Date], 0 ) ),
            [@monthenddate] = _previousmonthenddate
        ),
        Sales[Sales]
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Nov 2023 17:51:32 GMT</pubDate>
    <dc:creator>Jihwan_Kim</dc:creator>
    <dc:date>2023-11-13T17:51:32Z</dc:date>
    <item>
      <title>Time Intelligence without Date Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-Intelligence-without-Date-Table/m-p/3531193#M135676</link>
      <description>&lt;P&gt;Hello! I need to calculate prior month and year over year variances. My data model (I have access to Report Builder, not the underlying data) has a field for month and a field for year. Both have the sigma sign next to them and I seem to be unable to use those fields as they are in quick measures.&lt;BR /&gt;&lt;BR /&gt;How can I create the measures I need for prior month and year over year variances?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 16:50:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-Intelligence-without-Date-Table/m-p/3531193#M135676</guid>
      <dc:creator>lsfloyd8</dc:creator>
      <dc:date>2023-11-13T16:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: Time Intelligence without Date Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-Intelligence-without-Date-Table/m-p/3531314#M135681</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I am not sure if I understood your question correctly, but I tried to create a sample pbix file like below.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;I hope the below can provide some ideas on how to create a solution for your datamodel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I use EOMONTH DAX function, and the description of the dax function's link is down below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/eomonth-function-dax?wt.mc_id=DP-MVP-5004989" target="_blank"&gt;EOMONTH function (DAX) - DAX | Microsoft Learn&lt;/A&gt;&lt;/P&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;LI-CODE lang="markup"&gt;Prev month sales measure: = 
VAR _previousmonthenddate =
    EOMONTH ( MAX ( Sales[Date] ), -1 )
RETURN
    SUMX (
        FILTER (
            ADDCOLUMNS ( ALL ( Sales ), "@monthenddate", EOMONTH ( Sales[Date], 0 ) ),
            [@monthenddate] = _previousmonthenddate
        ),
        Sales[Sales]
    )&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Nov 2023 17:51:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Time-Intelligence-without-Date-Table/m-p/3531314#M135681</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2023-11-13T17:51:32Z</dc:date>
    </item>
  </channel>
</rss>

