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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
I'm trying to create a contract dashboard which I want to show the month on month growth % metric card according to slicer month selected. Growth % = (total current month - total previous month) / total previous month
Sample data as below.
| Contract no | Start | End | Monthly Amount |
| 1 | 1/4/2021 | 31/3/2022 | $100 |
| 2 | 1/5/2021 | 30/4/2022 | $200 |
| 3 | 1/5/2021 | 30/4/2022 | $300 |
| 4 | 1/6/2022 | 30/5/2023 | $400 |
If user select 'Apr 2022' on the slicer the card should calculate as:
( ($200+$300) - ($100+$200+$300) ) / ($100+$200+$300) = -16.67%
If user select 'May 2022' on the slicer the card should calculate as:
( $0 - ($200+$300) ) / ($200+$300) = -100%
How do I go about this?
Solved! Go to Solution.
@EGRF , Check if the period comparison method in this file can help
we move the max date in current employee(open contract in your case)
Thanks for the solution!
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 52 | |
| 40 | |
| 17 | |
| 16 |
| User | Count |
|---|---|
| 116 | |
| 105 | |
| 41 | |
| 34 | |
| 25 |