Forum Discussion
PBI_newuser
4 years agoPost Prodigy
How to sum rows correctly?
Hi, I have created the below measure but the Total is incorrect. Here is the pbix file.
Volume Impact Total = SUMX (VALUES('Calendar'[YearMonth]), [Vol Impact])
2 Replies
- amitchandakSuper User
PBI_newuser , try like
Volume Impact Total = SUMX (ADDCOLUMNS(SUMMARIZE('Append Table','Calendar'[YearMonth],'Append Table'[Product]),"_1", [Vol Impact]),[_1])- PBI_newuserPost Prodigy
Hi amitchandak , thanks for your suggestion. It doesn't work for my case. The sum from 2021-06 to 2021-09 is not showing up.