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

Level up your Power BI skills this month - build one visual each week and tell better stories with data! Get started

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
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

Fabric SQL PBI Data Days

Data Days 2026 coming soon!

Sign up to receive a private message when registration opens and key events begin.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.