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

Pull Last Day of Month Value

I have the following table showing percentage change versus current and previous value:

 

img_pbi_change.GIF

Is there a way to group this monthly showing the database size for the last day of current month versus last day of the previous month and so on?

 

Thanks,

Frank

1 ACCEPTED SOLUTION
V-pazhen-msft
Community Support
Community Support

@anelliaf 
Not sure what output do you want, maybe provide a picture to show the expected result.

However, to get change of the last day of current month versus last day of the previous month. Hope this measure helps you.

 

Measure = 
Var CurrentMonthLastday = CALCULATE(SUM('Table'[database size]),ENDOFMONTH('Table'[Date]))
Var PreviousMonthLastday = CALCULATE(SUM('Table'[database size]),ENDOFMONTH(PREVIOUSMONTH('Table'[Date])))

Return (CurrentMonthLastday-PreviousMonthLastday)/PreviousMonthLastday

 

 

Paul Zheng _ Community Support Team
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

3 REPLIES 3
V-pazhen-msft
Community Support
Community Support

@anelliaf 
Not sure what output do you want, maybe provide a picture to show the expected result.

However, to get change of the last day of current month versus last day of the previous month. Hope this measure helps you.

 

Measure = 
Var CurrentMonthLastday = CALCULATE(SUM('Table'[database size]),ENDOFMONTH('Table'[Date]))
Var PreviousMonthLastday = CALCULATE(SUM('Table'[database size]),ENDOFMONTH(PREVIOUSMONTH('Table'[Date])))

Return (CurrentMonthLastday-PreviousMonthLastday)/PreviousMonthLastday

 

 

Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

The table i posted shows a few rows with dates and database size.  The database size for the last day of the month is what I need, not a SUM.

 

Thanks in advance for your help!

@anelliaf 


This sum in measure doesn't mean add up the values, it does not do calculations (min or max would get the same). 
You may try this measure, it should return the specific value of the last day of the month only. 


Paul Zheng _ Community Support Team
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

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.