Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by attending the DP-600 session on April 23rd (pacific time), live or on-demand.
Learn moreNext up in the FabCon + SQLCon recap series: The roadmap for Microsoft SQL and Maximizing Developer experiences in Fabric. All sessions are available on-demand after the live show. Register now
Hi, I have a measure that counts the number of users by the date in the past 30 days, then also does the same for the previous month (31-60) and subtracts the 30 day count from the 31-60 count. From counting the raw data it doesn't that this is right, have I wrote it wrong?
Solved! Go to Solution.
Hi @analyst85 ,
I create a table as you mentioned but I have only ten days before.
Also I have a measure.
# Operations = SUM(Dates[Sum])
Then I do some changes on your DAX codes and it will give you the correct result. You can change the "31" to "30".
# Operations MoM Comparison =
CALCULATE(
[# Operations],
FILTER(
ALL('Dates'[FullDate]),
'Dates'[FullDate] >= TODAY() - 10 && 'Dates'[FullDate] <= TODAY() - 5
)
) -
CALCULATE(
[# Operations],
FILTER(
ALL('Dates'[FullDate]),
'Dates'[FullDate] >= TODAY() - 5 && 'Dates'[FullDate] <= TODAY()
)
)
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @analyst85 ,
I create a table as you mentioned but I have only ten days before.
Also I have a measure.
# Operations = SUM(Dates[Sum])
Then I do some changes on your DAX codes and it will give you the correct result. You can change the "31" to "30".
# Operations MoM Comparison =
CALCULATE(
[# Operations],
FILTER(
ALL('Dates'[FullDate]),
'Dates'[FullDate] >= TODAY() - 10 && 'Dates'[FullDate] <= TODAY() - 5
)
) -
CALCULATE(
[# Operations],
FILTER(
ALL('Dates'[FullDate]),
'Dates'[FullDate] >= TODAY() - 5 && 'Dates'[FullDate] <= TODAY()
)
)
Best Regards
Yilong Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello @analyst85 ,
Can you please try below measure:
# Operations MoM Comparison =
CALCULATE(
[# Operations],
FILTER(
ALL('Dates'[FullDate]),
'Dates'[FullDate] > TODAY() - 61 && 'Dates'[FullDate] <= TODAY() - 30
)
) -
CALCULATE(
[# Operations],
FILTER(
ALL('Dates'[FullDate]),
'Dates'[FullDate] >= TODAY() - 29 && 'Dates'[FullDate] <= TODAY()
)
)
If this post helps, then please consider accepting it as the solution to help other members find it more quickly. Thank You!!
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 48 | |
| 43 | |
| 39 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 68 | |
| 63 | |
| 31 | |
| 30 | |
| 23 |