Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Necesito contar el número de días consecutivos por pesona (idPersona) :
Se me ha ocurrido (es posible que no sea lo mejor) Convinar consigo misma la tabla y añadir la Fecha y el identificador del registro siguiente para poder sumar los días transcurridos:
Pero no se como ir sumando, acumulando los "Días Transcurridos" para los mismosmos idPersona, reseteando la suma cuando se cambien de persona (IdPersona), resultando algo similar a los número de la primera imagen.
Si me pueden ayudar con cualquier sugerencia, comentario. Muchas gracias
Solved! Go to Solution.
Por favor, pruebe esto
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("bc1LCsAgDEXRvWQsIb4Ybdci7n8bph9oI8IdncntnUCJYCzGECiN1EmdpASyl3QhC5RvUxb8rF1W2VusbezY2BkMxS1beDxWPxsT", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [IDPERSONA = _t, Fecha = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"IDPERSONA", Int64.Type}, {"Fecha", type date}}),
#"Grouped Rows" = Table.Group(#"Changed Type", {"IDPERSONA"}, {{"Count", (x) => Table.AddColumn( x,
"Duration_Days", each Duration.Days([Fecha]-
x[Fecha]{0}), type number
)
}}),
#"Removed Other Columns" = Table.SelectColumns(#"Grouped Rows",{"Count"}),
#"Expanded Count" = Table.ExpandTableColumn(#"Removed Other Columns", "Count", {"IDPERSONA", "Fecha", "Duration_Days"}, {"IDPERSONA", "Fecha", "Duration_Days"})
in
#"Expanded Count"
Por favor, pruebe esto
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("bdFLCsAgDATQu2Qtko9Rexbp/a9R+1kYO5DVY2BCMgYpJVLP7FlZjc40yCZxCeQf2UYeSB6zzLpYu63mOZs1YB3YEUzLNPHQ8VoNVuTbxXcrwBxYBdaAdWDH34SByd8M5AzkWMJdXlNgBqwCa8CWf5wX", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [IDPERSONA = _t, Fecha = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"IDPERSONA", Int64.Type}, {"Fecha", type date}}),
#"Grouped Rows" = Table.Group(#"Changed Type", {"IDPERSONA"}, {{"Count", (x) => Table.AddColumn( Table.AddIndexColumn( x,"Indx",0,1),
"ID", (z)=> [
test = Duration.Days( z[Fecha]-(
{x[Fecha]{0}}&x[Fecha]){z[Indx]}),
Result = if test > 1 then z[Indx] else null][Result],
type number
)
}}),
#"Removed Other Columns" = Table.SelectColumns(#"Grouped Rows",{"Count"}),
#"Expanded Count" = Table.ExpandTableColumn(#"Removed Other Columns", "Count", {"IDPERSONA", "Fecha", "Indx", "ID"}, {"IDPERSONA", "Fecha", "Indx", "ID"}),
#"Filled Down" = Table.FillDown(#"Expanded Count",{"ID"}),
#"Changed Type1" = Table.TransformColumnTypes(#"Filled Down",{{"Indx", type number}, {"ID", type number}}),
#"Grouped Rows1" = Table.Group(#"Changed Type1", {"IDPERSONA", "ID"}, {{"Count", each Table.AddColumn(_,"Duration_Days",(z)=> if z[ID] = null then z[Indx] else z[Indx]-z[ID],type number
)
}}),
#"Removed Other Columns1" = Table.SelectColumns(#"Grouped Rows1",{"Count"}),
#"Expanded Count1" = Table.ExpandTableColumn(#"Removed Other Columns1", "Count", {"IDPERSONA", "Fecha", "Duration_Days"}, {"IDPERSONA", "Fecha", "Duration_Days"})
in
#"Expanded Count1"
Muchas gracias a todos/as por su ayuda.
He modificado un poco el código de @Ahmedx ya que algunos casos de quedaban en negativo. Añadí un reseteo cada vez que estaba a 0:
#"Personalizada agregada" = Table.AddColumn(#"Expanded Count", "Reset_0", each if [Indx] = 0 then 0 else [ID]),
#"Columnas quitadas" = Table.RemoveColumns(#"Personalizada agregada",{"ID"}),
#"Columnas con nombre cambiado" = Table.RenameColumns(#"Columnas quitadas",{{"Reset_0", "ID"}}),
#"Filled Down" = Table.FillDown(#"Columnas con nombre cambiado",{"ID"}),
Añadiendo una columna que marca hasta cuando hacer el Filled Down, quedan todos los casos resueltos.
Por favor, pruebe esto
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("bdFLCsAgDATQu2Qtko9Rexbp/a9R+1kYO5DVY2BCMgYpJVLP7FlZjc40yCZxCeQf2UYeSB6zzLpYu63mOZs1YB3YEUzLNPHQ8VoNVuTbxXcrwBxYBdaAdWDH34SByd8M5AzkWMJdXlNgBqwCa8CWf5wX", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [IDPERSONA = _t, Fecha = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"IDPERSONA", Int64.Type}, {"Fecha", type date}}),
#"Grouped Rows" = Table.Group(#"Changed Type", {"IDPERSONA"}, {{"Count", (x) => Table.AddColumn( Table.AddIndexColumn( x,"Indx",0,1),
"ID", (z)=> [
test = Duration.Days( z[Fecha]-(
{x[Fecha]{0}}&x[Fecha]){z[Indx]}),
Result = if test > 1 then z[Indx] else null][Result],
type number
)
}}),
#"Removed Other Columns" = Table.SelectColumns(#"Grouped Rows",{"Count"}),
#"Expanded Count" = Table.ExpandTableColumn(#"Removed Other Columns", "Count", {"IDPERSONA", "Fecha", "Indx", "ID"}, {"IDPERSONA", "Fecha", "Indx", "ID"}),
#"Filled Down" = Table.FillDown(#"Expanded Count",{"ID"}),
#"Changed Type1" = Table.TransformColumnTypes(#"Filled Down",{{"Indx", type number}, {"ID", type number}}),
#"Grouped Rows1" = Table.Group(#"Changed Type1", {"IDPERSONA", "ID"}, {{"Count", each Table.AddColumn(_,"Duration_Days",(z)=> if z[ID] = null then z[Indx] else z[Indx]-z[ID],type number
)
}}),
#"Removed Other Columns1" = Table.SelectColumns(#"Grouped Rows1",{"Count"}),
#"Expanded Count1" = Table.ExpandTableColumn(#"Removed Other Columns1", "Count", {"IDPERSONA", "Fecha", "Duration_Days"}, {"IDPERSONA", "Fecha", "Duration_Days"})
in
#"Expanded Count1"
Prueba esto
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("bc1LCsAgDEXRvWQsIb4Ybdci7n8bph9oI8IdncntnUCJYCzGECiN1EmdpASyl3QhC5RvUxb8rF1W2VusbezY2BkMxS1beDxWPxsT", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [IDPERSONA = _t, Fecha = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"IDPERSONA", Int64.Type}, {"Fecha", type date}}),
#"Grouped Rows" = Table.Group(#"Changed Type", {"IDPERSONA"}, {{"Count", (x) => Table.AddColumn( Table.AddIndexColumn( x,"Indx",0,1),
"Duration_Days", (z)=> [
test = Duration.Days( z[Fecha]-(
{x[Fecha]{0}}&x[Fecha]){z[Indx]}),
Diffdays =
Duration.Days(z[Fecha]-
x[Fecha]{0}),
Result = if test > 1 then 0 else Diffdays][Result],
type number
)
}}),
#"Removed Other Columns" = Table.SelectColumns(#"Grouped Rows",{"Count"}),
#"Expanded Count" = Table.ExpandTableColumn(#"Removed Other Columns", "Count", {"IDPERSONA", "Fecha", "Duration_Days"}, {"IDPERSONA", "Fecha", "Duration_Days"})
in
#"Expanded Count"
Muchas gracias, lo he probado y va bien en el primer caso, pero faltaría alguna condicion para resetear el contador, ya que ella siguiente sigue acumulado los días:
Me ha surgido una nueva casuistica a este respecto:
Necesito que si los dias por Persona no son consecutivos, según campo Fecha, como lo marcado en azul, también se resetee la cuenta. en el caso de la imagen, al No ser 11/05 y 21/05 (Diferenica entre ambas fechas > 1) resetear la cuenta a 0. Podrian ayudarme con esto?
Si esta publicación ayuda, entonces considere aceptarla como la solución para ayudar a otros miembros a encontrarla más rápido y dar un gran pulgar hacia arriba.
Es perfecto, este es el resultado:
Muchisimas gracias.
Por favor, pruebe esto
let
Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText("bc1LCsAgDEXRvWQsIb4Ybdci7n8bph9oI8IdncntnUCJYCzGECiN1EmdpASyl3QhC5RvUxb8rF1W2VusbezY2BkMxS1beDxWPxsT", BinaryEncoding.Base64), Compression.Deflate)), let _t = ((type nullable text) meta [Serialized.Text = true]) in type table [IDPERSONA = _t, Fecha = _t]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"IDPERSONA", Int64.Type}, {"Fecha", type date}}),
#"Grouped Rows" = Table.Group(#"Changed Type", {"IDPERSONA"}, {{"Count", (x) => Table.AddColumn( x,
"Duration_Days", each Duration.Days([Fecha]-
x[Fecha]{0}), type number
)
}}),
#"Removed Other Columns" = Table.SelectColumns(#"Grouped Rows",{"Count"}),
#"Expanded Count" = Table.ExpandTableColumn(#"Removed Other Columns", "Count", {"IDPERSONA", "Fecha", "Duration_Days"}, {"IDPERSONA", "Fecha", "Duration_Days"})
in
#"Expanded Count"
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 |
---|---|
2 | |
2 | |
1 | |
1 | |
1 |