Forum Discussion
Media Movel em %
Bom dia!
Tenho 2 colunas no Power BI em uma tabela que se chama Chamado. Uma que se chama "criado", que são datas e outra chamado "opçãodechamado". Na coluna opçãodechamado, ela pode me retorna 3 valores em texto, que são "PREVENTIVA", "CORRETIVA" E "MELHORIA".
Foi criado, uma dimensão de calendário para essa tabela. Logo, conectei a coluna "criado" com a dimensãocalendário[data]>
Preciso fazer uma média móvel em porcentagem, de total Qtde. OS preventiva / Qtde. OS total
- Anonymous2 years ago
Hi Anonymous ,
Here is my sample data:This is the Calendar Table:
The relationship:
You can try to use this DAX to create a measure:
total Qty. preventive OS / total Qty. OS = VAR _Total = COUNTROWS('Called') VAR _PREVENTIVE = CALCULATE( COUNTROWS('Called'), 'Called'[optioncalled] = "PREVENTIVE" ) RETURN DIVIDE(_PREVENTIVE, _Total)The final output is as below:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
1 Reply
- AnonymousNot applicable
Hi Anonymous ,
Here is my sample data:This is the Calendar Table:
The relationship:
You can try to use this DAX to create a measure:
total Qty. preventive OS / total Qty. OS = VAR _Total = COUNTROWS('Called') VAR _PREVENTIVE = CALCULATE( COUNTROWS('Called'), 'Called'[optioncalled] = "PREVENTIVE" ) RETURN DIVIDE(_PREVENTIVE, _Total)The final output is as below:
Best Regards,
Dino Tao
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.