Check your eligibility for this 50% exam voucher offer and join us for free live learning sessions to get prepared for Exam DP-700.
Get StartedDon't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. 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.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.
User | Count |
---|---|
119 | |
83 | |
47 | |
42 | |
33 |
User | Count |
---|---|
190 | |
79 | |
72 | |
52 | |
46 |