Forum Discussion
Comparing Multiple Values against a single Employee in a Table and performing Filtering
- 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]
)
)
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]
)
)
tamerj1
Thank you so much! This worked like a charm!
I was trying to do this same thing by using simple IF Condition,
If ([Projected Projects] = [Submitted Projects], TRUE(), FALSE())
But that was just not working for me, for a reason I don't get. Thank you however for providing me a much more effective and a working approach! Really appreciate it.