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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Hi,
I have a model for presenting the development of overdue accounts receivables by month, and overdues today (Baan - Current) in the included snip. My business has set a target of 10 % reduction of overdue balance from Year Start to year end. I would like to create a measure which calculates 90 % of open overdue amount at year start (413,25 million --> 90 % of 459,17 million) which applies to all periods as shown in the snip below.
Thank you.
Solved! Go to Solution.
This will apply to all periods, but will show 90 % of the Open amount per period, and not 90 % of the open amount for year start - equal to 413 mill, which I need to be applied to all categories.
@sindrekb ,
Try this in a new calculated measure:
Target Test =
CALCULATE(
SUM(ar_db[Open Amount]) * 0.9,
ALL(ar_db),
ar_db[Development Status] = "Year start"
)
Output:
@sindrekb ,
Not sure if I completely understood your query but is this what you are looking for?
Target Test = SUM(TableName[Open Amount]) * 0.9
This will provide you 90% of open amount.
This will apply to all periods, but will show 90 % of the Open amount per period, and not 90 % of the open amount for year start - equal to 413 mill, which I need to be applied to all categories.
@sindrekb ,
Try this in a new calculated measure:
Target Test =
CALCULATE(
SUM(ar_db[Open Amount]) * 0.9,
ALL(ar_db),
ar_db[Development Status] = "Year start"
)
Output:
This works! Fantastic. Thank you 🙂
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |