This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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.
La columna salida "ID ICO" deberia verse de la siguiente manera.
Agradezco de cualquier ayuda para poder solventar este problema...Gracias!!
Solved! Go to Solution.
@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] )
)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!
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
@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] )
)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
Check out the April 2026 Power BI update to learn about new features.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 4 | |
| 3 | |
| 3 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 6 | |
| 5 | |
| 4 |