Forum Discussion
Joshua_
Helper II
6 years agoFILTER ALL?
Hi, I have the following measure. The measure is correct, because I get all the sales (Coloc Productiva), but in my dashboard have filters externs, for example the months,type... an...
- 6 years ago
Hi Joshua_
its a correct behaviour because you are using ALL() function that clear all functions.
try
=calculate(sum([_Saldo_Real_Mes_T_]), SIMR[GRUPO]="Coloc Productiva")or change ALL() to ALLSELECTED or ALLEXCEPT. it depends on user behaviour in your report
do not hesitate to give a kudo to useful posts and mark solutions as solution
az38
Community Champion
6 years agoHi Joshua_
its a correct behaviour because you are using ALL() function that clear all functions.
try
=calculate(sum([_Saldo_Real_Mes_T_]), SIMR[GRUPO]="Coloc Productiva")or change ALL() to ALLSELECTED or ALLEXCEPT. it depends on user behaviour in your report
do not hesitate to give a kudo to useful posts and mark solutions as solution
- Joshua_6 years ago
Helper II
Thank you!