Forum Discussion
bogomda
Resolver I
7 years agomeasure calculation - very odd problem
i wrote a simple measure Managed Services = CALCULATE( SUM(Budget[Amount], Budget[Account Group] = "Managed Services") which internally should translate into: CALCULATE(
...
Baskar
Resident Rockstar
7 years agoAs per your dax code it is expected result.
Let me know what is your expected output here ?
Do you want the same value in all blank cells ?
Try this
Managed Services = CALCULATE(SUM(Budget[Amount]),
FILTER(ALL(Budget[Account Group]),Budget[Account Group]="Managed Services"))
- bogomda7 years ago
Resolver I
Baskar, yes i need same value in all blank cells.
Measure below returns same result as the original measure. My understanding that internally they are identical anyway.
CALCULATE(
SUM(Budget[Amount]),
FILTER(
ALL(Budget[Account Group]),
Budget[Account Group]="Managed Services"
)
)
i never seen such a problem before.