Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreThe FabCon + SQLCon recap series starts April 14th at 8am Pacific. If you’re tracking where AI is going inside Fabric, this first session is a can't miss. Register now
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
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 53 | |
| 40 | |
| 37 | |
| 19 | |
| 18 |
| User | Count |
|---|---|
| 69 | |
| 67 | |
| 34 | |
| 33 | |
| 30 |