Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
fav_ccc2021
Helper I
Helper I

Encontrar un estado dentro de una tabla

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

 

fav_ccc2021_0-1728584085447.png

En la tabla donde tengo un ID con multimples estados, busco uno el de "aceptado" en una columna adicional.

 

Desde ya muchas gracias.

1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @fav_ccc2021 

 

Thanks for the reply from lbendlin .

 

The following testing is for your reference.

 

Sample:

vxuxinyimsft_1-1728626178082.png

 

Create a calculated column as follows

AcceptedStatus = 
IF(
    CALCULATE(
        COUNTROWS('Table'),
        'Table'[Estado] = "Aceptado"
    ) > 0,
    "Aceptado",
    BLANK()
)

 

Output:

vxuxinyimsft_2-1728626379614.png

 

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.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @fav_ccc2021 

 

Thanks for the reply from lbendlin .

 

The following testing is for your reference.

 

Sample:

vxuxinyimsft_1-1728626178082.png

 

Create a calculated column as follows

AcceptedStatus = 
IF(
    CALCULATE(
        COUNTROWS('Table'),
        'Table'[Estado] = "Aceptado"
    ) > 0,
    "Aceptado",
    BLANK()
)

 

Output:

vxuxinyimsft_2-1728626379614.png

 

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.

lbendlin
Super User
Super User

Sounds good. What have you tried and where are you stuck?

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

Check out the June 2025 Power BI update to learn about new features.

May 2025 Monthly Update

Fabric Community Update - May 2025

Find out what's new and trending in the Fabric community.