Forum Discussion
Meghbajaj
3 years agoFrequent Visitor
Need Help with Sum with Grouping through Dates
Hello Community, I have a table with ID, Dates, Fiscal Year, Bonus Type and Amount. The sum function performs the aggregation of amount over all of the dates. However, I require the sum of individua...
- 3 years ago
Power bi auto group by on all selected columns, You need to create a measure that ignores the "Bonus Type" from the group by.
SumOfAmt_ID_FY = CALCULATE(SUM(Sheet1[Amount]),ALL(Sheet1[BonusType]))
RaocoSolutions
3 years agoRegular Visitor
Power bi auto group by on all selected columns, You need to create a measure that ignores the "Bonus Type" from the group by.
SumOfAmt_ID_FY = CALCULATE(SUM(Sheet1[Amount]),ALL(Sheet1[BonusType]))