Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I am looking for a measure that tracks the change in unique ID numbers, with the ability to break down the changes per area and rating. For example, I have two tables below, one from July and another from June and need to see the differences between the two, similar to the third table below.
I have the below measure that works when I have the Area in a matrix table but stops working once I drill down to the Ratings.
Any help would be much appreciated!
June
Area | ID | Rating |
A | 001 | 2 |
B | 003 | 1 |
B | 004 | 1 |
C | 005 | 1 |
C | 006 | 1 |
July
Area | ID | Rating |
A | 001 | 2 |
A | 007 | 1 |
B | 003 | 1 |
C | 005 | 1 |
C | 006 | 1 |
End result
Area | Rating | Change |
A | 1 | +1 |
A | 2 | 0 |
B | 1 | -1 |
B | 2 | 0 |
C | 1 | 0 |
C | 2 | 0 |
Solved! Go to Solution.
Hello! Instead of having a separate table for each month, I would have one table and add a date column (just pick a random date in the month). Then you can easily use time intelligence of MoM.
Something like this:
Your output could be like this:
Proud to be a Super User! | |
Hi @Helen075,
Just following up to see if the Response provided by community member were helpful in addressing the issue.
If one of the responses helped resolve your query, please consider marking it as the Accepted Solution. Feel free to reach out if you need any further clarification or assistance.
Best regards,
Prasanna Kumar
Hi @Helen075,
Just following up to see if the Response provided was helpful in resolving your issue. Please feel free to let us know if you need any further assistance.
Best regards,
Prasanna Kumar
Hi @Helen075,
Thank you for reaching out to the Microsoft Fabric Forum Community, and special thanks to @audreygerred for prompt and helpful response.
Just following up to see if the Response provided by community member were helpful in addressing the issue.
If one of the responses helped resolve your query, please consider marking it as the Accepted Solution. Feel free to reach out if you need any further clarification or assistance.
Best regards,
Prasanna Kumar
Hello! Instead of having a separate table for each month, I would have one table and add a date column (just pick a random date in the month). Then you can easily use time intelligence of MoM.
Something like this:
Your output could be like this:
Proud to be a Super User! | |