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.
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?
User | Count |
---|---|
17 | |
17 | |
14 | |
13 | |
13 |
User | Count |
---|---|
17 | |
14 | |
13 | |
10 | |
8 |