Forum Discussion
Anonymous
3 years agoNot applicable
Filter NOT and Include.
hi, in Cognos i have a filter that looks like this: Fact_PO NOT([PO Type] includes ("INT", "IN2") AND [Status] includes ('10','15','31') In PBI webversion it is apparently not possible to make suc...
- 3 years ago
Hi Anonymous
please try
Measure =
INT (
ISEMPTY (
FILTER (
'Fact PO',
NOT ( 'Fact PO'[PO Type]
IN { "INT", "IN2" }
&& 'Fact PO'[Status] IN { "10", "15", "31" } )
)
)
)
tamerj1
3 years agoCommunity Champion
Hi Anonymous
please try
Measure =
INT (
ISEMPTY (
FILTER (
'Fact PO',
NOT ( 'Fact PO'[PO Type]
IN { "INT", "IN2" }
&& 'Fact PO'[Status] IN { "10", "15", "31" } )
)
)
)
Anonymous
3 years agoNot applicable
hi Tamerj1
thanks for helping out, it seems to be working!!!!
well done.
Mrt