Forum Discussion
Filter with calculated measures
- 9 years ago
how can i filter with dynamically filter?
Have you tried the VAR function that I mentioned in your previous thread? In this scenario, the formula should like below.
=
VAR m = Measures
RETURN
CALCULATE ( SUM ( 'x' ), FILTER ( 'y', column = m ) )If the result is still not right, could you post your table structure and the measures you use, and some sample data in your case?:smileyhappy:
Regards
how can i filter with dynamically filter?
Have you tried the VAR function that I mentioned in your previous thread? In this scenario, the formula should like below.
=
VAR m = Measures
RETURN
CALCULATE ( SUM ( 'x' ), FILTER ( 'y', column = m ) )
If the result is still not right, could you post your table structure and the measures you use, and some sample data in your case?:smileyhappy:
Regards
Hi,
I have a table with 3 Columns
Report Name | Manager | Status
Status contains Values: Pass, Fail, NA
I want to calculate % Pass for each manager. NA should be calculated in %of calculation.
I created one measure to calculate Total of Pass and Fail. and tried creating another measure for only "Pass". But its same % value for each manager.
I am showing this data in Matrix. Please guide. Thanks!