This is best Fabric, Power BI, SQL and AI community event. How do we know? The last event sold out! Save €200 with code FABCMTY200.
Register nowThe Fabric community is now in read-only for platform upgrade. Learn more
Hello!
I have a request regarding a measure that calculates % (Budget) of Total Budget of Account Group "01"
Is there any DAX expert around that can help me with this 🙂
Thanks
| ACCOUNT GROUP | BUDGET | % OF ACCOUNT GROUP "01" |
| 01 | 115.079.546,44 | 100% |
| 02 | 22.682.861,83 | 19,40% |
| 03 | 15.138.325,76 | 12,30% |
| 04 | 4.699.545,35 | 4,02% |
| 05 | 4.093.782,28 | 3,50% |
Solved! Go to Solution.
hi, try with this:
% of AccountGroup1 =
DIVIDE (
SUM ( Table2[BUDGET] ),
CALCULATE (
SUM ( Table2[BUDGET] ),
FILTER ( ALL ( Table2 ), Table2[ACCOUNT GROUP] = "01" )
)
)
hi, try with this:
% of AccountGroup1 =
DIVIDE (
SUM ( Table2[BUDGET] ),
CALCULATE (
SUM ( Table2[BUDGET] ),
FILTER ( ALL ( Table2 ), Table2[ACCOUNT GROUP] = "01" )
)
)
Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.
| User | Count |
|---|---|
| 21 | |
| 21 | |
| 14 | |
| 14 | |
| 13 |
| User | Count |
|---|---|
| 47 | |
| 36 | |
| 24 | |
| 20 | |
| 20 |