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?
jdbuchanan71
5 years agoSuper User
Oh, for that you can just do
New Table >
New Table = SUMMARIZE ( YourTable, YourTable[Cycle.Name], YourTable[Cycle.Breakup] )Anonymous
5 years agoNot applicable
Hi , thank you for the dax, but its summing the breakup still, we need it to be not summing the breakup. Do you know how i could acheive that?