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
Solved! Go to Solution.
In the end, we decided to remove the % all together from the row totals using HASONEFILTER. I don't believe this was the best method but it was A method.
In the end, we decided to remove the % all together from the row totals using HASONEFILTER. I don't believe this was the best method but it was A method.
Hi @Anonymous
If the above posts help, please kindly mark it as a answer to help others find it more quickly. thanks!
If not, please kindly elaborate more.
@Anonymous , In case the issue is not resolved. Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.
@Anonymous This looks like a measure totals problem. Very common. See my post about it here: https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376
Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:
https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907
@Anonymous , Try like
Idle % = divide(((DISTINCTCOUNT('Agent Data'[Agent Name]) * 3600)-((sum('Agent Data'[On Calls Dur])+sum('Agent Data'[Unavailable Dur])))),
(DISTINCTCOUNT('Agent Data'[Agent Name]) * 3600))
Also refer wrong grand total
https://www.youtube.com/watch?v=ufHOOLdi_jk
https://www.youtube.com/watch?v=Rii_6qkLNh8
https://www.youtube.com/watch?v=Ka7Ds4EAjNQ
Seems an obvious case of your formula being written specifically for a row by row basis which doesn't translate to a total context. Without seeing exactly how your data is formatted, I'd just write each of on calls/idle/unavailable to sum up the instances of each and then divide by the grand total, shouldn't be any need to multiply by 3600 or anything like that
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 |
|---|---|
| 30 | |
| 24 | |
| 23 | |
| 17 | |
| 15 |
| User | Count |
|---|---|
| 63 | |
| 36 | |
| 30 | |
| 23 | |
| 22 |