Forum Discussion
Anonymous
4 years agoNot applicable
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])
amitchandak
4 years agoSuper User
Anonymous , try like
Volume Impact Total = SUMX (ADDCOLUMNS(SUMMARIZE('Append Table','Calendar'[YearMonth],'Append Table'[Product]),"_1", [Vol Impact]),[_1])Anonymous
4 years agoNot applicable
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.