Forum Discussion
SUMX with two filters
Hi,
Im getting the error 'The expression contains multiple columns, but only a single column can be used in a True/False expression that is used as a table filter expression.' for below. Could somebody please help?
Hi Anonymous ,
Try the following:
Count1 = CALCULATE (
SUMX(vm1, [Count]),
FILTER(
vm1, vm1[checkdate] = 1 && vm1[FinishedDate] = BLANK( )
)
)
Please give a kudos if this is helpful or accept it as a solution if it works!
Thanks,
Pragati
2 Replies
- Pragati11Super User
Hi Anonymous ,
Try the following:
Count1 = CALCULATE (
SUMX(vm1, [Count]),
FILTER(
vm1, vm1[checkdate] = 1 && vm1[FinishedDate] = BLANK( )
)
)
Please give a kudos if this is helpful or accept it as a solution if it works!
Thanks,
Pragati
- AnonymousNot applicable
Thankyou 🙂