Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi
I have created two DAX quick meassures, one for YoY% change and one for MoM% change. the former returns a value all right, the later does not. the problematic meassure is below (didn't change anything, straight out of the quick meassure).
How can I do a "walkthrough" the meassure and see what it tries to calculate and why it does not return any values? Something like the "evaluate formual" functionality in EXCEL.
Licenses MoM% =
IF(
ISFILTERED('O365LicenseReport'[OrderCreationDate]),
ERROR("Time intelligence quick measures can only be grouped or filtered by the Power BI-provided date hierarchy or primary date column."),
VAR __PREV_MONTH =
CALCULATE(
SUM('O365LicenseReport'[Licenses]),
DATEADD('O365LicenseReport'[OrderCreationDate].[Date], -1, MONTH)
)
RETURN
DIVIDE(SUM('O365LicenseReport'[Licenses]) - __PREV_MONTH, __PREV_MONTH)
)
Solved! Go to Solution.
@v-jiascu-msft wrote:Hi @Anonymous,
The MoM% needs a month context. We can't see any such context from the snapshot. Can you share a sample of your data?
Best Regards,
Dale
you are right. once I've drilled down to a monthly level I started seeing numbers. however I would have expected that even in that "single point"chart, it would have returned the current vs last_month delta.
anyways, thanks
Hi @Anonymous,
The MoM% needs a month context. We can't see any such context from the snapshot. Can you share a sample of your data?
Best Regards,
Dale
@v-jiascu-msft wrote:Hi @Anonymous,
The MoM% needs a month context. We can't see any such context from the snapshot. Can you share a sample of your data?
Best Regards,
Dale
you are right. once I've drilled down to a monthly level I started seeing numbers. however I would have expected that even in that "single point"chart, it would have returned the current vs last_month delta.
anyways, thanks
@Anonymous For that I recommend you try DAX Studio, is a free software that evaluates DAX expressions
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 48 | |
| 40 | |
| 38 | |
| 20 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |