<?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: How to create a monthly frequency column from latest updated date column? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-monthly-frequency-column-from-latest-updated/m-p/2711721#M82410</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please try below steps&lt;/P&gt;
&lt;P&gt;1. my test table&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;2. add two new column&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Jan Freq =
VAR cur_id = 'Table'[User-id]
VAR tmp =
    FILTER (
        'Table',
        'Table'[User-id] = cur_id
            &amp;amp;&amp;amp; MONTH ( 'Table'[Latest update date] ) = 1
    )
RETURN
    COUNTROWS ( tmp )
&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Feb Freq =
VAR cur_id = 'Table'[User-id]
VAR tmp =
    FILTER (
        'Table',
        'Table'[User-id] = cur_id
            &amp;amp;&amp;amp; MONTH ( 'Table'[Latest update date] ) = 2
    )
RETURN
    COUNTROWS ( tmp )
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Please refer attached .pbix file&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Community Support Team_ Binbin Yu&lt;BR /&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Fri, 19 Aug 2022 07:10:46 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-08-19T07:10:46Z</dc:date>
    <item>
      <title>How to create a monthly frequency column from latest updated date column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-monthly-frequency-column-from-latest-updated/m-p/2701403#M81788</link>
      <description>&lt;P&gt;We have datasheet with columns user-id and date when the presentation was last updated. I want to create new columns that register a monthly frequency score whenever the date column gets updated. For example, if date gets updated in month of January twice the frequency score will be two for January and if date gets updated thrice in month of February the frequency score will be three and so on and so forth.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 15 Aug 2022 22:06:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-monthly-frequency-column-from-latest-updated/m-p/2701403#M81788</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-15T22:06:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a monthly frequency column from latest updated date column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-monthly-frequency-column-from-latest-updated/m-p/2701631#M81796</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , is it snapshot type of column , or you want to create snapshot on power bi track changes&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If that is snapshot you can use distinctcount&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;if not you can create one using&lt;/P&gt;
&lt;P&gt;&lt;A href="https://blog.crossjoin.co.uk/2020/04/13/keep-the-existing-data-in-your-power-bi-dataset-and-add-new-data-to-it-using-incremental-refresh/" target="_blank"&gt;https://blog.crossjoin.co.uk/2020/04/13/keep-the-existing-data-in-your-power-bi-dataset-and-add-new-data-to-it-using-incremental-refresh/&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://www.thebiccountant.com/2017/01/11/incremental-load-in-powerbi-using-dax-union/" target="_blank"&gt;https://www.thebiccountant.com/2017/01/11/incremental-load-in-powerbi-using-dax-union/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Aug 2022 02:35:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-monthly-frequency-column-from-latest-updated/m-p/2701631#M81796</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-08-16T02:35:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a monthly frequency column from latest updated date column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-monthly-frequency-column-from-latest-updated/m-p/2711721#M82410</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Please try below steps&lt;/P&gt;
&lt;P&gt;1. my test table&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;2. add two new column&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Jan Freq =
VAR cur_id = 'Table'[User-id]
VAR tmp =
    FILTER (
        'Table',
        'Table'[User-id] = cur_id
            &amp;amp;&amp;amp; MONTH ( 'Table'[Latest update date] ) = 1
    )
RETURN
    COUNTROWS ( tmp )
&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Feb Freq =
VAR cur_id = 'Table'[User-id]
VAR tmp =
    FILTER (
        'Table',
        'Table'[User-id] = cur_id
            &amp;amp;&amp;amp; MONTH ( 'Table'[Latest update date] ) = 2
    )
RETURN
    COUNTROWS ( tmp )
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Please refer attached .pbix file&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Community Support Team_ Binbin Yu&lt;BR /&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 19 Aug 2022 07:10:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-create-a-monthly-frequency-column-from-latest-updated/m-p/2711721#M82410</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-08-19T07:10:46Z</dc:date>
    </item>
  </channel>
</rss>

