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
romals29
Helper II
Helper II

Populating previous month values for multiple years in visual

Hi

 

I have a fact table that has daily HR data with a date field column, and the table is populated from July 2021 to June 2022 for 1 year of data.

I need to populate a pivot table visual showing the selected month value with the previous month's value.

I used the measure column below to create the previous month's value. 

 

Prev_Month Rcvd = CALCULATE(COUNTA('Main table'[ID]), PREVIOUSMONTH('Main table'[Date column].[Date]))
 
With this its working fine for year 2021 (july to dec), but 2022 (jan to june) showing blank values for previous month column.
 
I have created Date table also and created relationship with the Main table.
I couldn't find why its working fine for last year and not for current year. 
Please help me to fix this.
 
Thank You in advance
Romal
1 ACCEPTED SOLUTION
romals29
Helper II
Helper II

Hi 

I tried below and it worked out.

Here instead of Calendar.Date column, I have used Main Table.Date column in measure. 

 

Prior Month Count = CALCULATE(
    COUNTA(
        'Main Table'[ID]),
        DATEADD(
             'Main Table'[Date Column].[Date],
            -1,
            MONTH
        )
)

View solution in original post

5 REPLIES 5
parry2k
Super User
Super User

@romals29 good it worked but it is not the correct approach.



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Then can you help me to find. just want to know the best practice here..  Thank You

romals29
Helper II
Helper II

Hi 

I tried below and it worked out.

Here instead of Calendar.Date column, I have used Main Table.Date column in measure. 

 

Prior Month Count = CALCULATE(
    COUNTA(
        'Main Table'[ID]),
        DATEADD(
             'Main Table'[Date Column].[Date],
            -1,
            MONTH
        )
)
parry2k
Super User
Super User

@romals29 check my youtube video on such topic and that will get you the answer New Year and my MTD and QTD measures stopped working, why? - Power BI - YouTube

 

Follow us on LinkedIn and YouTube.gif to our YouTube channel

I would  Kudos if my solution helped. 👉 If you can spend time posting the question, you can also make effort to give Kudos to whoever helped to solve your problem. It is a token of appreciation!

 

 



Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!

Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo

If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤


Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.

Hi

I tried your solution that you used in MTD calculation to PREVIOUSMONTH calculation but it didn't work. 

 

Prev_Month Count = CALCULATE(COUNTA('Main table'[ID]), PREVIOUSMONTH( CALCULATETABLE( VALUES('Calendar'[Date]), KEEPFILTERS('Calendar'[Date]<= TODAY() ) ) ) )
 
Did I miss anything here.
 
Thank You

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.