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
Anonymous
Not applicable

Quick Measure MoM%

Hi

When using the MoM% quick measure Power BI is also returning values for the last month PLUS 1. I.e. If my last period is May 2017, then the quick measure calculates the MoM% for June 2017 which creates a distortion when looking at the chart/data.

Have anybody come across this issue?

Thanks,

MoM.PNG

1 ACCEPTED SOLUTION
Vvelarde
Community Champion
Community Champion

@Anonymous

 

Hi, made a adjustment to the quick measure. Add before a condition to evaluate the Date.

 

Value MoM%-Modified = 
If (VALUES(Table1[Date])<>BLANK(),
IF(
	ISFILTERED('Table1'[Date]),
	ERROR("Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy."),
	VAR __PREV_MONTH =
		CALCULATE(SUM('Table1'[Value]), DATEADD('Table1'[Date].[Date], -1, MONTH))
	RETURN
		DIVIDE(SUM('Table1'[Value]) - __PREV_MONTH, __PREV_MONTH)
))

Regards

 

Victor

Lima - Peru

MoM%.png




Lima - Peru

View solution in original post

4 REPLIES 4
bi_expt08
Regular Visitor

You can also use below DAX in a measure instead of quick measure to solve the distortion in the beginning as well as at the end of the visuals. Here you just have to create one more measure for prior month instaed of defining a variable within the measure itself.

Current_Month_Value = SUM('Table1"[Value])

Prior_Month_Value = CALCULATE('Table1'[Value], PREVIOUSMONTH('Table1'[Date]))

%_MoM_Modified_Value
IF(
   AND(
           'Table1'[Value]<>Blank(),

           'Table1'[Prior_Month_Value]<>Blank()

),

            DIVIDE([Value],[Prior_Month_Value],Blank())-1,
            Blank()
)

Vvelarde
Community Champion
Community Champion

@Anonymous

 

Hi, made a adjustment to the quick measure. Add before a condition to evaluate the Date.

 

Value MoM%-Modified = 
If (VALUES(Table1[Date])<>BLANK(),
IF(
	ISFILTERED('Table1'[Date]),
	ERROR("Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy."),
	VAR __PREV_MONTH =
		CALCULATE(SUM('Table1'[Value]), DATEADD('Table1'[Date].[Date], -1, MONTH))
	RETURN
		DIVIDE(SUM('Table1'[Value]) - __PREV_MONTH, __PREV_MONTH)
))

Regards

 

Victor

Lima - Peru

MoM%.png




Lima - Peru

Why 

VALUES(Table1[Date])<>BLANK() not works for me?  it show error message, you expeted return a sing value. So I changed values to Max or Min

 

Anonymous
Not applicable

Thanks so much Victor! 

This worked just prefect !

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.