Forum Discussion
Foguete
Helper I
3 years agoAddcolumn, different cases, summarize
Hello, I need help as I am trying to build a table with a case I never face untill now. I currently have a table with different line that I want to summarize. For example: date task ce...
FreemanZ
Super User
3 years agohi Foguete
i am afraid there might be no easy workaround. How many column do you have?
Foguete
Helper I
3 years agoHi FreemanZ,
Thanks for the DAX, a slight modification and I have found the solution.
Here in red, it is in case someone would get there:
UNION(
SELECTCOLUMNS(
TableName,
"date", TableName[date],
"task", TableName[task],
"center", TableName[center],
"qty", TableName[qty]
),
_table)
- FreemanZ3 years ago
Super User
Brilliant! Great idea!