The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Veo este problema reportado varias veces en el foro y le está sucediendo a uno de mis informes.
Es una fuente de datos simple de una página y una (lista de SharePoint (nube)).
Funciona bien en el .pbix que lo creé originalmente y se actualiza bien, pero en el servicio, en la próxima actualización, los datos desaparecen.
Creo que puede ser causado por una incosistencia entre el servicio y Power Query de escritorio powerbi.
Este es el conjunto de operaciones en Power Query que hago en este informe. ¿Hay algo aquí que pueda causar esto?
let
Source = SharePoint.Tables("https://mysite.sharepoint.com/sites/my-site", [Implementation="2.0", ViewMode="All"]),
#"longredactedstring" = Source{[Id="redactedid"]}[Items],
#"Expanded PersonField" = Table.ExpandTableColumn(#"longredactedstring", "Person Field", {"value"}, {"Person Field.value"}),
#"Expanded Assigned To" = Table.ExpandTableColumn(#"Expanded Person Field", "Assigned To", {"value"}, {"Assigned To.value"}),
#"Expanded Project PM" = Table.ExpandTableColumn(#"Expanded Assigned To", "Project PM", {"value"}, {"Project PM.value"}),
#"Extracted Values" = Table.TransformColumns(#"Expanded Project PM", {"Details", each Text.Combine(List.Transform(_, Text.From), ":"), type text}),
#"Expanded Created By" = Table.ExpandListColumn(#"Extracted Values", "Created By"),
#"Expanded Created By1" = Table.ExpandRecordColumn(#"Expanded Created By", "Created By", {"title"}, {"Created By.title"}),
#"Expanded Modified By" = Table.ExpandListColumn(#"Expanded Created By1", "Modified By"),
#"Expanded Modified By1" = Table.ExpandRecordColumn(#"Expanded Modified By", "Modified By", {"title"}, {"Modified By.title"}),
#"Extracted Values1" = Table.TransformColumns(#"Expanded Modified By1", {"MultiChoiceColumn", each Text.Combine(List.Transform(_, Text.From), ":"), type text})
in
#"Extracted Values1"
¿Alguien tiene alguna sugerencia?
¡Hi! @WorkHard
¿Puede probar esto en un nuevo informe y tal vez en otro espacio de trabajo? Además, pruebe esto en Dataflow e intente conectar ese flujo de datos al escritorio.
Si puede repetir esto, le aconsejaría que aumente un ticket de soporte de MS.