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
I am in property management and in my report I am trying to get a dollar per unit for my delinquency by project. The issue I am having is BI to recogonize my individual projects unit counts. I can get my total unit counts and my total project count, but for the life of me the individual unit count by project is not working.
I created a table called Agent which I was able to group by Agent. I still cannot get the total unit count by Agent from the information in the Project Info table. Projects are by Agent and each project has a total unit count which is what I am trying to add so I get a total unit count by Agent.
@BrandiHutch , Please share some sample data
Usually, we can use
countrows(Summarize(Table, Table[Project],Table[Unit]))
In case the cost repeats and you want some distinct combination
Sumx(Summarize(Table, Table[Project],Table[Unit], Table[Cost]), [Cost])
Otherwise
Sum(Table[Cost])
Or
Sumx(Table, Table[Cost] * Table[Unit]) //In case unit is number and need multiplication
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 |
|---|---|
| 35 | |
| 32 | |
| 25 | |
| 22 | |
| 18 |
| User | Count |
|---|---|
| 66 | |
| 36 | |
| 32 | |
| 25 | |
| 23 |