Forum Discussion
Twister8
9 years agoHelper II
SUMMARIZE DAX - multiple columns ...cannot be conver
Hi guys I have problem in SSAS when I try create the measure with tabular model 'Teste:=' SUMMARIZE( table, table[cd], "test", Sum(table[value]) ) I need sum some values, value1 + valu...
Anonymous
9 years agoNot applicable
A measure aggregates to a scalar value. What you've written returns a table, so it is not a valid measure. What do you expect this measure to do once it fetches this table? You've added a column, so I'm guessing you want a sum or average of that new column?