Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote now!
¡Hola comunidad PowerBI!
Tengo una pregunta con la que espero que alguien pueda ayudarme. Necesito marcar la primera instancia cuando un "trabajo" va al 100% completo. Hay varios trabajos en el conjunto de datos y cada uno debe marcarse solo en la primera instancia de que alcanza el 100% completado.
El ejemplo del conjunto de datos actual tiene este aspecto:
Básicamente necesito otra columna con las marcas la primera instancia sólo de un trabajo que alcanza el 100%:
¡Gracias de antemano!
Hola @NutNick1982 ,
Suponiendo que el porcentaje completado es una medida-
Puede crear una medida
Medida: IF ([Porcentaje Completado] - 1, "Sí", BLANK())
Si Porcentaje completado es una columna
Medida: IF (MAX('Tabla'[Porcentaje completo]) á 1, "Sí", BLANK())
En caso de que desee crear una columna calculada
IF ('Tabla'[Porcentaje Completo]) - 1, "Sí", BLANK())
saludos
Harsh Nathani
Apreciar con un Kudos!! (Haga clic en el botón Pulgares arriba)
¿He respondido a tu pregunta? ¡Marca mi puesto como una solución!
@NutNick1982 añadir un nuevo meaure como este
First Reached to 100% =
VAR __date = CALCULATE ( MIN ( Table[Date] ), ALLEXCEPT ( Table, Table[JobId] ), Table[PerentComplete] = 1 )
RETURN
IF ( __date = CALCULATE ( MIN ( Table[Date] ), ALLEXCEPT ( Table, Table[JobId] ), Table[PerentComplete] = 1 ), "Yes" )
Me gustaría❤ elogiossi mi solución ayudara.👉Si puedes pasar tiempo publicando la pregunta, también puedes hacer esfuerzos para dar a Kudos quien haya ayudado a resolver tu problema. ¡Es una muestra de agradecimiento!
⚡Visítenos enhttps://perytus.com, su ventanilla única para proyectos/formación/consulta relacionados con Power BI.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
@NutNick1982 parece que me perdí algo, trataré de reproducir al final o si se puede enviar pbix con datos de muestra, será muy útil.
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
No me permite compartir el archivo en el foro..... los datos de muestra que utilicé para probar su medida son los siguientes:
DateJob IDPercent Complete
| 5/31/2019 | 1A | 90% |
| 5/31/2019 | 2B | 80% |
| 6/30/2019 | 1A | 95% |
| 6/30/2019 | 2B | 85% |
| 7/31/2019 | 1A | 99% |
| 7/31/2019 | 2B | 90% |
| 8/31/2019 | 1A | 100% |
| 8/31/2019 | 2B | 95% |
| 9/30/2019 | 1A | 100% |
| 9/30/2019 | 2B | 99% |
| 10/31/2019 | 1A | 100% |
| 10/31/2019 | 2B | 100% |
| 11/30/2019 | 1A | 100% |
| 11/30/2019 | 2B | 100% |
| 12/31/2019 | 1A | 100% |
| 12/31/2019 | 2B | 100% |
@NutNick1982 solución adjunta
Me gustaría❤ elogiossi mi solución ayudara.👉Si puedes pasar tiempo publicando la pregunta, también puedes hacer esfuerzos para dar a Kudos quien haya ayudado a resolver tu problema. ¡Es una muestra de agradecimiento!
⚡Visítenos enhttps://perytus.com, su ventanilla única para proyectos/formación/consulta relacionados con Power BI.⚡
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
Gracias por su respuesta. Estoy recibiendo "Sí" para todos los resultados.
Resultados en mi tabla:
Medir que aporté:
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.