Join us for an expert-led overview of the tools and concepts you'll need to pass exam PL-300. The first session starts on June 11th. See you there!
Get registeredPower BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.
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
Solved! Go to Solution.
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.
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.
User | Count |
---|---|
83 | |
76 | |
63 | |
51 | |
45 |
User | Count |
---|---|
101 | |
43 | |
39 | |
39 | |
36 |