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
eduse07
Helper I
Helper I

Nueva columna copiar datos

Hola a todos.

 

Estoy trabajando con una consulta llamada "Conformacion ICO", en la cual busco crear una nueva columna que me tome el elemento resaltado en la columa "ICO" y me lo replique para todos los valores resaltados de la columna "Documento", he intentado con varios codigos pero no he obtenido el resultado esperado. 

eduse07_1-1627658951798.png

La columna salida "ID ICO" deberia verse de la siguiente manera. 

eduse07_2-1627658989932.png

 

Agradezco de cualquier ayuda para poder solventar este problema...Gracias!!

1 ACCEPTED SOLUTION
ERD
Community Champion
Community Champion

@eduse07 ,

you can try this measure:

CorrectID =
VAR currentDoc = MAX ( T[Doc] )
RETURN
    CALCULATE (
        MAX ( T[ID] ),
        LEFT ( T[ID], LEN ( "03-0178" ) ) = "03-0178",
        T[Doc] = currentDoc,
        ALL ( T[Date] )
    )

ERD_0-1627915038083.png

If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.

Stand with Ukraine!


Here is an official way you can support Ukraine financially:
Come Back Alive foundation: https://savelife.in.ua/en/

Thank you!

View solution in original post

4 REPLIES 4
ERD
Community Champion
Community Champion

What is the logic behind this? You need to choose values with name starting from "03-0178" for each Documento?

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.

Stand with Ukraine!


Here is an official way you can support Ukraine financially:
Come Back Alive foundation: https://savelife.in.ua/en/

Thank you!

yes, that is precisely what i must do 

ERD
Community Champion
Community Champion

@eduse07 ,

you can try this measure:

CorrectID =
VAR currentDoc = MAX ( T[Doc] )
RETURN
    CALCULATE (
        MAX ( T[ID] ),
        LEFT ( T[ID], LEN ( "03-0178" ) ) = "03-0178",
        T[Doc] = currentDoc,
        ALL ( T[Date] )
    )

ERD_0-1627915038083.png

If this post helps, then please consider Accept it as the solution ✔️to help the other members find it more quickly.

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly. Appreciate your Kudos.

Stand with Ukraine!


Here is an official way you can support Ukraine financially:
Come Back Alive foundation: https://savelife.in.ua/en/

Thank you!

Sorry fo the delay, this funcionated for me. Thanks

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.