March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe 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
Gracias de antemano por la ayuda! Tengo una tabla que estoy tratando de rellenar los valores NULL usando el valor de registros anteriores. A continuación se muestra un ejemplo. El campo Valor tiene algunos valores que faltan para las categorías multipe. La fórmula para rellenar los valores que faltan es simplemente multiplicar el número de valor de la fila anterior (dentro de la categoría) por el valor de Factor de crecimiento. En este ejemplo, la función rellenaría (55 x 0.8) 44 para el primer valor que falta en la categoría A y 75,2 (94 x 0,8) para el primer valor que falta en la categoría B. La función se repetiría hasta que se rellenen todos los valores que faltan.
Categoría | Factor de crecimiento | Valor |
A | 0.5 | 100 |
A | 1.1 | 110 |
A | 0.8 | 88 |
A | 0.9 | 79 |
A | 0.7 | 55 |
A | 0.8 | |
A | 0.9 | |
A | 0.4 | |
A | 0.6 | |
A | 0.7 | |
B | 0.5 | 200 |
B | 0.8 | 160 |
B | 1.2 | 192 |
B | 0.7 | 134 |
B | 0.7 | 94 |
B | 0.8 | |
B | 0.9 | |
B | 0.4 | |
B | 0.6 | |
B | 0.7 |
Hola @KyleSchmile
lbendlinLa respuesta de 's le ha mostrado el camino por Power Query.
túpodría probar mi manera de lograr su objetivo en Dax.
En primer lugar, agregamos una columna de índice en Power Query Editor.
Entonces dejemos que’s agregar otra columna de índice por columna calculada.
Category ID =
var _rank=RANKX(FILTER('Table','Table'[Category]=EARLIER('Table'[Category])),'Table'[Index],,ASC)
var _avgcountofP=DIVIDE(COUNTROWS('Table'),CALCULATE(DISTINCTCOUNT('Table'[Category]),ALL('Table')))
var _c=if(_rank>_avgcountofP,_avgcountofP,_rank)
return _c
Ahora deja que’s utilizar una columna de medida para rellenar el valor.
Medidas ?
IF (
ISBLANK ( MAX ( 'Table'[Value] ) ),
PRODUCTX (
FILTER (
ALL ( 'Table' ),
'Table'[Category] = MAX ( 'Table'[Category] )
&& 'Table'[Category ID] <= MAX ( 'Table'[Category ID] )
),
'Table'[Growth Factor]
)
* CALCULATE (
VALUES ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
'Table'[Category] = MAX ( 'Table'[Category] )
&& 'Table'[Category ID] = 1
)
) / 0.5,
MAX ( 'Table'[Value] )
)
Resultado:
Puede descargar el archivo pbix de este enlace:
Saludos
Rico Zhou
Si este post ayuda,entonces considere Aceptarlo como la solución para ayudar a los otros miembros a encontrarlo más rápidamente.
¿Tiene que ser Power Query? En DAX puede salirse con la suya con una función ProductX.
Todavía estoy aprendiendo Power Query, pero así es como empezaría a abordarlo:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("XY5LCsAgDESvUrIuYmz8ZFmvId7/GlUqGmYz8B75TGv00k3exZHsPfX7N+x4Jh/jXRlZihE6MqsReWSMsHLBhmUBTsB5c901w6pZ9wdOx7ALMzWYmXmFHwGjAmfsIwUW4AS8ivYP", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Category = _t, #"Growth Factor" = _t, Value = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Growth Factor", type number}, {"Value", type number}}),
#"Added Index" = Table.AddIndexColumn(#"Changed Type", "Index", 0, 1, Int64.Type),
#"Added Custom1" = Table.AddColumn(#"Added Index", "Custom", each if [Index] = 0
or [Category] <> #"Added Index"[Category]{[Index]-1} then [Value]
else [Growth Factor]),
#"Added Custom" = Table.AddColumn(#"Added Custom1", "Value adj", each if [Index] = 0
or [Category] <> #"Added Index"[Category]{[Index]-1} then [Value]
else #"Added Custom1"[Custom]{[Index]-1}*[Growth Factor])
in
#"Added Custom"
Esta no es una solución completa todavía, todavía necesita el equivalente "productx" y la agrupación para que funcione.
Aquí hay una "solución" bastante burda, pero hace lo que necesita. Como entiendo en el equivalente de PRODUCTX() en Power Query es List.Product()
Código de consulta de energía:
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("XY5LCsAgDESvUrIuYmz8ZFmvId7/GlUqGmYz8B75TGv00k3exZHsPfX7N+x4Jh/jXRlZihE6MqsReWSMsHLBhmUBTsB5c901w6pZ9wdOx7ALMzWYmXmFHwGjAmfsIwUW4AS8ivYP", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [Category = _t, #"Growth Factor" = _t, Value = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Growth Factor", type number}, {"Value", type number}}),
#"Added Index" = Table.AddIndexColumn(#"Changed Type", "Index", 0, 1, Int64.Type),
#"Added IndexOffset" = Table.AddColumn(#"Added Index", "IndexOffset", each if [Index] = 0
or [Category] <> #"Added Index"[Category]{[Index]-1} then [Index]
else null),
#"Filled Down" = Table.FillDown(#"Added IndexOffset",{"IndexOffset"}),
#"Added Custom" = Table.AddColumn(#"Filled Down", "Custom", each if [Index] = 0
or [Category] <> #"Filled Down"[Category]{[Index]-1} then [Value]
else [Growth Factor]),
#"Added Result" = Table.AddColumn(#"Added Custom", "Result", each List.Product(List.Range(#"Added Custom"[Custom],[IndexOffset],[Index]+1-[IndexOffset])))
in
#"Added Result"
Resultado:
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.