Forum Discussion
Anonymous
5 years agoNot applicable
Aggregation without Sum
Hi All, I was wondering if you can help my in this part. Im trying to aggregate some numbers without summing them. So for each cycle.Name i want to have each type of available numbers for it with...
- 5 years ago
Anonymous the DAX I gave you should generate the new table you are looking for. When you say "new table" you mean a new calucated table that is in your data model yes?
Anonymous
5 years agoNot applicable
Thank you very much for the prompt reply. But i would need to have it made in dax as the numbers im looking for are basis used for another calculation behind the scenes. Visualy i dont need to display them anyware. Would you know how to produce same results by using dax?
THnak you & Kr
jdbuchanan71
5 years agoSuper User
I think this will give you what you are looking for.
Cycle Breakup Measure =
SUMX (
GROUPBY ( YourTable, YourTable[Cycle.Name], YourTable[Cycle.Breakup] ),
YourTable[Cycle.Breakup]
)