Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
3 years ago
Solved

Comparing Multiple Values against a single Employee in a Table and performing Filtering

Hi, I have two datasets that I have merged with each other. The merged dataset looks like this,    Emp_ID Resource_Name Primary Code IsProjection 1 Haris A FALSE 1 Haris A TRUE ...
  • tamerj1's avatar
    3 years ago

    Hi Anonymous 

    Place the following measure in the filter pane of tge table visual, select"is not blank" then apply the filter 

    FilterMeasure =
    COUNTROWS (
    FILTER (
    VALUES ( 'dataset'[Emp_ID] ),
    [Projected Projects] <> [Submitted Projects]
    )
    )