Forum Discussion
Calling multiple measures as filter
- 6 years ago
Hi, Dunner2020
You may try to create a measure like below.
Result = SUMX( FILTER( 'Customer Information', [Zero Customer filter]>0&&[Zero Time filter]>0 ), 'Customer Information'[NumberOfConsumers]*'Customer Information'[Time Spent] )Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, Dunner2020
You may try to create a measure like below.
Result =
SUMX(
FILTER(
'Customer Information',
[Zero Customer filter]>0&&[Zero Time filter]>0
),
'Customer Information'[NumberOfConsumers]*'Customer Information'[Time Spent]
)
Best Regards
Allan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- Dunner20206 years agoPost Prodigy
Hi v-alq-msft ,
Thanks for your reply. That's exactly what I want. I have a question regarding the solution. In filter function, you used the name of measure and then use a comparison operator to check whether it's greater than 0 or not (as shown below)
FILTER( 'Customer Information', [Zero Customer filter]>0&&[Zero Time filter]>0 ),In Zero customer filter measure, I already comparing that value should not be equal to zero. My question is did you make any change in the filter? If not then it means that we are using a comparison operator twice: once within the measure and second time in sumx() function. Correct?