Forum Discussion
gtamir
2 years agoPost Patron
Build a table and filter it
Hi, I have the folloing DAX function to build a table: RunningTotalByCreditCard = SUMMARIZECOLUMNS(creditcard[id_card], "TOTAL" , SUM(creditcard[sum])) I'd like to add a filter so the table will s...
Fowmy
2 years agoSuper User
SUMMARIZECOLUMNS(
creditcard[id_card],
"TOTAL" , SUM(creditcard[sum]),
FILTER( creditcard , creditcard[Month] = 3 )
)