Forum Discussion
Thulasiraman
3 years agoHelper II
Summarize error
Hi I have created a SUMMARIZE Dax which shows the error which I could not understand. Pls help Thulasiraman
MahyarTF
3 years agoMemorable Member
Hi,
As I know the Summarized measure is a return table and not sure if you use it as a direct measure to calc the sum of column
- Thulasiraman3 years agoHelper II
- MahyarTF3 years agoMemorable Member
Hi
This is Dax code for creating the table using Summarize :
Sheet87Summarize = SUMMARIZE(sheet87, Sheet87[Customer], "sale", sum(Sheet87[Weight]))This is TOp N with Summarize :Sheet87TopSum = topn(2, SUMMARIZE(sheet87, Sheet87[Customer], "Sales", sum(Sheet87[Weight])))Appreciate your Kudos and please mark it as a solution if it helps you
- Thulasiraman3 years agoHelper II