Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. 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.
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!
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
@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.
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
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
25 | |
18 | |
17 | |
17 | |
15 |
User | Count |
---|---|
28 | |
27 | |
18 | |
14 | |
13 |