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

Prepping for a Fabric certification exam? Join us for a live prep session with exam experts to learn how to pass the exam. Register now.

Reply
vna_7
Microsoft Employee
Microsoft Employee

MoM% Growth showing value as zero

Hi,

 

I want to create MOM growth of FTE_Name (has null values) being authenticated. Here are my Dax measures : 

 

CurrentMonthFTE1 =
CALCULATE(
    COUNTROWS('IPAReportMonthwise'),
    NOT(ISBLANK('IPAReportMonthwise'[FTE_Name])),
    USERELATIONSHIP('IPAReportMonthwise'[LogstoFetchArenaUsersMonthwise.AuthDate], 'DateTable'[Date])
)
 
 
PreMonthMeasure1 =
CALCULATE(
    COUNTROWS('IPAReportMonthwise'),
    NOT(ISBLANK('IPAReportMonthwise'[FTE_Name])),
    USERELATIONSHIP('IPAReportMonthwise'[LogstoFetchArenaUsersMonthwise.AuthDate], 'DateTable'[Date]),
    PARALLELPERIOD('DateTable'[Date], -1, MONTH)
)
 
MoMGrowth1 =
DIVIDE(
    [CurrentMonthFTE1] - [PreMonthMeasure1],
    [PreMonthMeasure1],
    0
) * 100
 
Here is the output showing same results for CurrentFTEUsers and PreMonthUsers and MomGrowth as 0.
 
Screenshot 2025-01-13 100017.png
2 ACCEPTED SOLUTIONS

one suggestion I can think of is use something like a year-mo for from the date calendar table as the table's first column as opposed to a month from the table being summarized.

View solution in original post

vna_7
Microsoft Employee
Microsoft Employee

As suggested added year-mm column from the DATE  table (I was taking it from IPAReportMonthwise table) and it worked as expected, Thanks a ton @Corey_M .

  Screenshot 2025-01-13 105906.png

View solution in original post

4 REPLIES 4
vna_7
Microsoft Employee
Microsoft Employee

As suggested added year-mm column from the DATE  table (I was taking it from IPAReportMonthwise table) and it worked as expected, Thanks a ton @Corey_M .

  Screenshot 2025-01-13 105906.png

Corey_M
Resolver II
Resolver II

Based on the image provided the issue is that your premonth measure and current month measure are returning the same value. and your month over month measure works correctly to give 0.

 

although I am not sure what your error is on the first 2 measures as they both look fine to me but you should see an offset like this 

Corey_M_0-1736792669784.png

 

vna_7
Microsoft Employee
Microsoft Employee

I know, I have tried parallelperiod and other solutions too but all showing same values.

one suggestion I can think of is use something like a year-mo for from the date calendar table as the table's first column as opposed to a month from the table being summarized.

Helpful resources

Announcements
May PBI 25 Carousel

Power BI Monthly Update - May 2025

Check out the May 2025 Power BI update to learn about new features.

Notebook Gallery Carousel1

NEW! Community Notebooks Gallery

Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.

May 2025 Monthly Update

Fabric Community Update - May 2025

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