Hi
I am new to DAX.
I would like to create a measure that doesn't include the Unallocated Cash, Viod Accounts, Gross Sales Ledger Balance, or Credits Balance from the Patch column.
I have created this measure
Patch = SUMX(
FILTER('Date','Date'[Patch] = "Credits Under Investigation", "Unallocated Cash", "Void Accounts", "Sales Ledger Balance", "Nett Sales Ledger Balance", 'Date','Date'[Patch]))
But I get this : Too many arguments were passed to the FILTER function. The maximum argument count for the function is 2.
I tried to use ALLEXCEPT in place of FILTER and it doesn't work.
Would someome mind explaining what I did wrong so I can learn.
It is probably due to gaps in my knowlegde of functions but any help would be greatly appreciated!