Forum Discussion
Deemo
6 years agoAdvocate II
Ignore selected columns and filter while calculating measures
Hi All, Scenario is that we have to display those flows which are being used in more than one department based on selected date filter and department. Below is the sample data(department ,flo...
- 6 years ago
Hi Deemo ,
Please create a measure and apply it in visual level filter.
Measure 3 = CALCULATE ( DISTINCTCOUNT ( 'Table'[Department] ), ALLSELECTED ( 'Table'[Date], 'Table'[Department] ), REMOVEFILTERS ( 'Table'[Department] ) )Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
V-lianl-msft
6 years agoCommunity Support
Hi Deemo ,
Please create a measure and apply it in visual level filter.
Measure 3 =
CALCULATE (
DISTINCTCOUNT ( 'Table'[Department] ),
ALLSELECTED ( 'Table'[Date], 'Table'[Department] ),
REMOVEFILTERS ( 'Table'[Department] )
)
Best Regards,
Liang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Deemo
6 years agoAdvocate II
Thanks Liang.
I am getting error for REMOVEFILTERS (Cannot find name) and second part of ALLSELECTED (Unexpected parameter)
ALLSELECTED ( 'Table'[Date], 'Table'[Department] ),
REMOVEFILTERS ( 'Table'[Department] )I am connected to SSAS.