Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
Syndicate_Admin
Administrator
Administrator

Columna de índice personalizada con varias condiciones

Hola

Soy nuevo aquí, pero he leído muchas publicaciones y he recibido mucha ayuda de ellas 🙂 , así que me pregunto si alguien puede ayudar con mi problema. Espero que esté bien que publique un par de fotos en lugar de archivos.

Estos son mis datos: (El conjunto de datos tiene muchos más colums y alrededor de 50000 filas, pero el problema que tengo es con los datos a continuación).

EllO_0-1695388300012.png

Quiero un índice colum que se vea así:

EllO_1-1695388402107.png

Puedo hacer esto en la vista de tabla en Power BI, pero necesito hacerlo en Power Query. En la vista de tabla de Power BI, esto es lo que obtengo: (Y esto es lo que quiero en Power Query).

EllO_2-1695388520709.png

He intentado usar "agrupar por" en la consulta de poder, pero esto es lo que obtengo:

EllO_3-1695388578039.png

Realmente apreciaré si alguien tiene el tiempo para ayudarme 🙂 Gracias 🙂

3 REPLIES 3
Syndicate_Admin
Administrator
Administrator

¡Muchas gracias, especialmente por el video! ¡Realmente impresionado de que te hayas tomado el tiempo para hacer un video! Esto funcionó muy bien 🙂 Gracias de nuevo 🙂

Syndicate_Admin
Administrator
Administrator

Y para saber cómo puede hacer esto en Power Query, vea mi video

let
    Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("jce5DQAgCADAXahp+GEWwv5raG9iuO66gYgZEFTNYHB9M/flRe7dI5ZXvY/I/D2z6vcqovdzAA==", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [SO = _t, #"Analysis nr" = _t]),
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"SO", Int64.Type}, {"Analysis nr", Int64.Type}}),
    #"Grouped Rows" = Table.Group(#"Changed Type", {"SO", "Analysis nr"}, {{"Count", each _, type table [SO=nullable number, Analysis nr=nullable number]}}),
    #"Grouped Rows1" = Table.Group(#"Grouped Rows", {"SO"}, {{"Count", (x)=> Table.AddIndexColumn(x,"Indx",1,1)
}}),
    #"Removed Columns" = Table.RemoveColumns(#"Grouped Rows1",{"SO"}),
    #"Expanded Count" = Table.ExpandTableColumn(#"Removed Columns", "Count", {"Count", "Indx"}, {"Count.1", "Indx"}),
    #"Expanded Count.1" = Table.ExpandTableColumn(#"Expanded Count", "Count.1", {"SO", "Analysis nr"}, {"SO", "Analysis nr"})
in
    #"Expanded Count.1"

Índice personalizado colum.mp4

Syndicate_Admin
Administrator
Administrator

Por favor, pruebe esto

Column = 
VAR t1 ='Table'[SO]
RETURN
RANKX(FILTER(ALL('Table'),'Table'[SO]=t1),'Table'[Analysis nr],,ASC,Dense)

Screenshot_1.png

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.

Top Solution Authors
Top Kudoed Authors