Say I have the table
[3 0 2 5 8 1
2 9 8 3 1 2
9 8 3 2 3 1]
All I want is a function to yield the column
[19
25
26]
without having to type out literally every single column name. My actual data matrix is 30 columns long.
Is there a way to do this that I'm missing? Or is DAX just completely incapable of doing this? I've Googled every single possible combination of the words "sum", "row", "-column", "PowerBI", and "DAX" and gotten absolutely nothing useful. Why in the world would SUM
and SUMX
automatically assume that the user would always in every single instance ONLY want to sum along dimension 1?