Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Hola a todos, espero puedan ayudarme,
Tengo un ID dentro de una tabla donde quiero encontrar un estado especifico . Lo quiero dejar como una columna no como medida.
Ejemplo
En la tabla donde tengo un ID con multimples estados, busco uno el de "aceptado" en una columna adicional.
Desde ya muchas gracias.
Solved! Go to Solution.
Hi @fav_ccc2021
Thanks for the reply from lbendlin .
The following testing is for your reference.
Sample:
Create a calculated column as follows
AcceptedStatus =
IF(
CALCULATE(
COUNTROWS('Table'),
'Table'[Estado] = "Aceptado"
) > 0,
"Aceptado",
BLANK()
)
Output:
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @fav_ccc2021
Thanks for the reply from lbendlin .
The following testing is for your reference.
Sample:
Create a calculated column as follows
AcceptedStatus =
IF(
CALCULATE(
COUNTROWS('Table'),
'Table'[Estado] = "Aceptado"
) > 0,
"Aceptado",
BLANK()
)
Output:
Best Regards,
Yulia Xu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Sounds good. What have you tried and where are you stuck?
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
34 | |
14 | |
12 | |
11 | |
10 |