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
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.

Check out my latest demo report in the data story gallery.

Stand with Ukraine!


Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/

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.

Check out my latest demo report in the data story gallery.

Stand with Ukraine!


Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/

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.

Check out my latest demo report in the data story gallery.

Stand with Ukraine!


Here are official ways you can support Ukraine financially (accounts with multiple currencies):
1) Support the Armed Forces of Ukraine: https://bank.gov.ua/ua/about/support-the-armed-forces
2) Come Back Alive foundation: https://www.comebackalive.in.ua/

Thank you!

Sorry fo the delay, this funcionated for me. Thanks

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

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