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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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