My goal is to aggregate values in a single column based on groups of other columns.
For example my table looks like:
and the desired output would be something like this:
I can do this on the same table or create a new table.
I have attemped this:
SUMMARIZECOLUMNS (
'Sheet1 (2)'[Item],
'Sheet1 (2)'[Name],
"Total", SUM([Money])
)
but the error returned is: *The expression refers to multiple columns. Multiple columns cannot be converted to a scalar value.*z
EDIT
Ultimately my end goal is to create a calculated column to round the dollar up based on a series of ranges using SWITCH function.
=SWITCH(TRUE(),[Money] <= 10, 0, [Money] <= 20, 10)
...something like that.