Forum Discussion
Filtering Table Based On Measure Value
- Anonymous6 years ago
I looped back to a result which worked with single values ( FILTER( __DS0Core,'Meta_EngStatusSummary'[WorstStatus2] =@ProjStatus) ) and realized I was over-thinking this... This is the EVALUATE statement which ended up working for me:
FILTER( __DS0Core,'Meta_EngStatusSummary'[WorstStatus2] IN GetKeyStatusColumn)
I looped back to a result which worked with single values ( FILTER( __DS0Core,'Meta_EngStatusSummary'[WorstStatus2] =@ProjStatus) ) and realized I was over-thinking this... This is the EVALUATE statement which ended up working for me:
FILTER( __DS0Core,'Meta_EngStatusSummary'[WorstStatus2] IN GetKeyStatusColumn)
Thanks a lot, I had similar problem and your approach gave me the solution:
Measures:
Current Week = WEEKNUM(TODAY() , 21 )
Total Planned Week WO =
CALCULATE ( COUNT ( 'WO'[WO Number] ),
WO[WO Status] IN { "MH", "MJ", "MK" },
FILTER( WO,
WO[Planned Week] IN { [Current Week] } ) )