Forum Discussion
Filter table based on Calculated Measure(s), using DAX formulas
- 8 years ago
Thank you for this partial solution.
There is one limitation though. The total row still shows data including the outliers.
I found a better filtering which also shows the correct total which is the following one.
I will add both yours and mine so as to help other readers:
Yours:
% AVG Effort 2 Cost 2 = IF([% AVG Effort 2 Cost] > 0.40, [% AVG Effort 2 Cost], BLANK())
Mine:
% AVG Effort 2 Cost 2 = CALCULATE([% AVG Effort 2 Cost];FILTER(Calculated_Measures;[% AVG Effort 2 Cost]>=0.4))
This is a great alternative
Hi themistoklis,
i got one partial solution for you... is it ok for...
or else tell me sample output how to display your results...
https://www.dropbox.com/s/micnrlo5chrxow2/PowerBI_Sample.pbix?dl=0
- themistoklis8 years agoCommunity Champion
Thank you for this partial solution.
There is one limitation though. The total row still shows data including the outliers.
I found a better filtering which also shows the correct total which is the following one.
I will add both yours and mine so as to help other readers:
Yours:
% AVG Effort 2 Cost 2 = IF([% AVG Effort 2 Cost] > 0.40, [% AVG Effort 2 Cost], BLANK())
Mine:
% AVG Effort 2 Cost 2 = CALCULATE([% AVG Effort 2 Cost];FILTER(Calculated_Measures;[% AVG Effort 2 Cost]>=0.4))
This is a great alternative