Forum Discussion
Anonymous
4 years agoNot applicable
Grouping column
Hi! I need to create a formula, when I will use an existing table but with grouping, how can I do it?
- 4 years ago
Anonymous
Please try this
Total Scores = SUMX ( DISTINCT ( SELECTCOLUMNS ( CALCULATETABLE ( Table, ALLEXCEPT ( Table, Table[question] ) ), "@question", [question], "@score", [score] ) ), [@score] )
tamerj1
Community Champion
4 years agoHi Anonymous
this is a very general question. Would you please provide more details about your data structure and the expected results.
Anonymous
4 years agoNot applicable
Cognitive ease = SUMX(Filter(table , table[question] = "first_question"), table[score])
That is my formula, I need to some how add grouping that I need