Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ajinkya777
New Member

How to create a monthly frequency column from latest updated date column?

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.

 

 

ajinkya777_0-1660601108691.png

1 ACCEPTED SOLUTION
v-binbinyu-msft
Community Support
Community Support

Hi @ajinkya777 ,

Please try below steps

1. my test table

vbinbinyumsft_0-1660892869879.png

2. add two new column

Jan Freq =
VAR cur_id = 'Table'[User-id]
VAR tmp =
    FILTER (
        'Table',
        'Table'[User-id] = cur_id
            && MONTH ( 'Table'[Latest update date] ) = 1
    )
RETURN
    COUNTROWS ( tmp )
Feb Freq =
VAR cur_id = 'Table'[User-id]
VAR tmp =
    FILTER (
        'Table',
        'Table'[User-id] = cur_id
            && MONTH ( 'Table'[Latest update date] ) = 2
    )
RETURN
    COUNTROWS ( tmp )

vbinbinyumsft_1-1660892986754.png

Please refer attached .pbix file

 

Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-binbinyu-msft
Community Support
Community Support

Hi @ajinkya777 ,

Please try below steps

1. my test table

vbinbinyumsft_0-1660892869879.png

2. add two new column

Jan Freq =
VAR cur_id = 'Table'[User-id]
VAR tmp =
    FILTER (
        'Table',
        'Table'[User-id] = cur_id
            && MONTH ( 'Table'[Latest update date] ) = 1
    )
RETURN
    COUNTROWS ( tmp )
Feb Freq =
VAR cur_id = 'Table'[User-id]
VAR tmp =
    FILTER (
        'Table',
        'Table'[User-id] = cur_id
            && MONTH ( 'Table'[Latest update date] ) = 2
    )
RETURN
    COUNTROWS ( tmp )

vbinbinyumsft_1-1660892986754.png

Please refer attached .pbix file

 

Best regards,
Community Support Team_ Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

amitchandak
Super User
Super User

@ajinkya777 , is it snapshot type of column , or you want to create snapshot on power bi track changes

 

If that is snapshot you can use distinctcount

 

if not you can create one using

https://blog.crossjoin.co.uk/2020/04/13/keep-the-existing-data-in-your-power-bi-dataset-and-add-new-...
https://www.thebiccountant.com/2017/01/11/incremental-load-in-powerbi-using-dax-union/

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors