Forum Discussion
vjnvinod
8 years agoImpactful Individual
sum column error
hi ,I need to sum all the values of one coloumn, but unfortunately it showing some syntax error? can someone have a look and let me know, how to fix this? Regards, vinod
Anonymous
8 years agoNot applicable
You have an extra ")" where it should be a "]". Try this:
TERFYTDUSD = SUM(Outbound[TER_FYTD_USD])
Hope this helps,
Parker
vjnvinod
8 years agoImpactful Individual
Anonymous
thanks but
still not able to figure out, see the below error
- Anonymous8 years agoNot applicable
It looks like you're trying to do this sum in a Calculate Table expression. Try creating a measure or calculated column and then try this formula.
Parker
- vjnvinod8 years agoImpactful Individual
Anonymous
thanks,
I actually wanted to create a new table, by summing up of one of my coloumn in a different table.
how do i do that?
- Anonymous8 years agoNot applicable
There may be a more elegant way of doing this but this works:
Table = SELECTCOLUMNS( FILTER( Outbound, Outbound[TER_FYTD_USD] ), "New Column", SUM(Outbound[TER_FYTD_USD]) )Hope this helps,
Parker
- Anonymous8 years agoNot applicable
Maybe create a Measure with a formula like TERFYTDUSD = CALCULATE(SUM(Outbound[TER_FYTD_USD]))