We've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Hi All,
I have data sub unit and each month and i'm created category within/ Beyond SLA level now i want to calculate Total of sub unit level
kindly hlep me on this.
| Sub_Unit | Count | Value | Sub_unit Total |
| Export | 10 | Beyond SLA | 261 |
| Export | 251 | Within SLA | 261 |
| Import | 97 | Beyond SLA | 488 |
| Import | 391 | Within SLA | 488 |
| Process | 74 | Beyond SLA | 311 |
| Process | 237 | Within SLA | 311 |
| Live | 68 | Beyond SLA | 497 |
| Live | 429 | Within SLA | 497 |
| Create | 669 | Beyond SLA | 1912 |
| Create | 1243 | Within SLA | 1912 |
| Locked | 28 | Beyond SLA | 465 |
| Locked | 437 | Within SLA | 465 |
| Release | 182 | Beyond SLA | 456 |
| Release | 274 | Within SLA | 456 |
| Total | 4390 | 4390 |
i want to create like last column sub unit total.
Thanks,
MS
Solved! Go to Solution.
Hello @MSuser5 ,
Try using following DAX:
Heu @MSuser5
Input:
Please create the following measure
Sub_unit Total = CALCULATE(SUM(TableA[Count]), ALLEXCEPT(TableA,TableA[Sub_Unit]))
And Plot the table and you will get the expected output:
If this helps you then please mark my solution as accepted so that others can find it quickly when they face the similar issue. Thank you!
Heu @MSuser5
Input:
Please create the following measure
Sub_unit Total = CALCULATE(SUM(TableA[Count]), ALLEXCEPT(TableA,TableA[Sub_Unit]))
And Plot the table and you will get the expected output:
If this helps you then please mark my solution as accepted so that others can find it quickly when they face the similar issue. Thank you!
Thanks its working as expected
Hello @MSuser5 ,
Try using following DAX:
Hi, @MSuser5
From the picture, I get that you have three columns right? and last column has text and number mixed and you want to sum the numbers.
here is the suggestation.
1. go to power query.
2. split the last column
here is the documentation for you. https://learn.microsoft.com/en-us/power-query/split-columns-delimiter
after split, you will have 2 columns. rename with your own choise.
sum it up or visualize it in a table.
Proud to be a Super User!
so, you can not split the column? it is your requirement?
Proud to be a Super User!
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 |
|---|---|
| 57 | |
| 38 | |
| 33 | |
| 19 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 66 | |
| 41 | |
| 34 | |
| 25 |