Forum Discussion
MULTIPLE FILTERS NOT WORKING
- 7 years ago
Anonymous,
Or you can modify your measure like below if you want to filter the rows which contains the assigned values.
Result = VAR SUM_ORCAMENTO = CALCULATE ( SUM ( 't_Detalhe_Processos_Fases_Tarefas'[Orcamento] ); FILTER ( 't_Detalhe_Processos_Fases_Tarefas'; 't_Detalhe_Processos_Fases_Tarefas'[Tipo_Processo_SGC] IN { "CMP"; "EXE"; "EXC"; "TM" } ) ) VAR SUM_INC = CALCULATE ( SUM ( 't_Detalhe_Processos_Fases_Tarefas'[Incorridas_Totais] ); FILTER ( 't_Detalhe_Processos_Fases_Tarefas'; 't_Detalhe_Processos_Fases_Tarefas'[Tipo_Processo_SGC] IN { "CMP"; "EXE"; "EXC"; "TM" } ) ) RETURN ( SUM_ORCAMENTO - SUM_INC ) / SUM_ORCAMENTOCommunity Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
- 7 years ago
Anonymous,
Please sign in and click "Accept as Solution".
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi there,
I do not see the option to mark as correct, can you please enlighten me?
Thank you
NM
Anonymous,
Please sign in and click "Accept as Solution".
Community Support Team _ Jimmy Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.