Forum Discussion
mterry
4 years agoHelper V
Filtering on new summarized column when creating a new table
I'm creating a new summarized table from an existing table, but would like to add a filter based on the new column I'm creating. I've tried the below with no luck, also tried replacing the 'SUM(SA[Sp...
- 4 years ago
= FILTER( SUMMARIZECOLUMNS( SA[Fiscal Year], SA[Operating Unit Name], SA[Supplier], "Annual Spend", SUM( SA[Spend in Euro] ) ), [Annual Spend] <> 0 )
CNENFRNL
4 years agoCommunity Champion
=
FILTER(
SUMMARIZECOLUMNS(
SA[Fiscal Year],
SA[Operating Unit Name],
SA[Supplier],
"Annual Spend", SUM( SA[Spend in Euro] )
),
[Annual Spend] <> 0
)