Forum Discussion
GuestUser
6 years agoHelper V
Filtering the report
Hi, Reports are connnected to SSAS (Tabular Model) - Connect Live I have 2 measures Department count of emp , attrition count abc 5 4 xyz ...
- 6 years ago
Create a third measure:
Measure = IF([count of emp] = 0 && [attrition count] = 0,0,1)
Filter on that.
Greg_Deckler
6 years agoCommunity Champion
Create a third measure:
Measure = IF([count of emp] = 0 && [attrition count] = 0,0,1)
Filter on that.