Forum Discussion
vijayvizzu
5 years agoHelper III
Double Filter
I have created a measure to count the carry overs (previous month values on selected month). The results are working fine, but i want to apply one more filter to exclude the rows which contains the w...
- Anonymous5 years ago
Hi vijayvizzu ,
Please update the formula of measure as below and check whether it can get the correct result. You can find the attachment for the details.
Measure =VAR CarryoverCount =CALCULATE (COUNT ( 'Forwarder Details'[Carry Over] ),PREVIOUSMONTH ( calTable[Date] ),FILTER (ALL ( 'Forwarder Details' ),NOT ( 'Forwarder Details'[Custom] IN { "ABC", "DEF" } )))RETURNCarryoverCountBest Regards
vijayvizzu
5 years agoHelper III
amitchandak Thanks for your support, i modified the measure, but it doesn't gives any values (blank)
VAR CarryoverCount =
CALCULATE(
COUNT('Forwarder Details'[Carry Over]),
PREVIOUSMONTH( calTable[Date] ),
FILTER(
'Forwarder Details',
NOT( 'Forwarder Details'[Custom] in {"ABC","DEF"})
)
)
RETURN
CarryoverCount
amitchandak
5 years agoSuper User
vijayvizzu ,Can you share sample data and sample output in table format? Or a sample pbix after removing sensitive data.