This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Hello,
I have following measure in Power BI Desktop report:
% Project Completed =
Divide ( Sumx( Table, (Table[TaskDuration]*(Table[TaskPercentCompleted]/100))), sum(Table[TaskDuration]), blank()) + 0
When I add this measure in Paginated report, it is not showing the right values.
Can you help me write a custom formula that works in paginated report from the above formula?
The problem I am facing is that there is no Sumx function in paginated report. Also, I need it to show 0% in case of blank.
Solved! Go to Solution.
hi @Vishruti ,
try below condition
=IIF(Sum(Fields!TaskDuration.Value) = 0, 0,
(Sum(Fields!TaskDuration.Value * (Fields!TaskPercentCompleted.Value / 100))) / Sum(Fields!TaskDuration.Value))
Hii @Vishruti ,
try this
= IIF(SUM(Table[TaskDuration]) = 0, 0, SUM(Table[TaskDuration]*Table[TaskPercentCompleted])/100)/SUM(Table[TaskDuration])
hi @Vishruti ,
try below condition
=IIF(Sum(Fields!TaskDuration.Value) = 0, 0,
(Sum(Fields!TaskDuration.Value * (Fields!TaskPercentCompleted.Value / 100))) / Sum(Fields!TaskDuration.Value))
Hello @Anonymous
Somehow this formula is not working
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 36 | |
| 29 | |
| 29 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |