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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Syndicate_Admin
Administrator
Administrator

El informe de SharePoint está en blanco después de la actualización del servicio, pero funciona bien en el escritorio

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"
2 REPLIES 2
Syndicate_Admin
Administrator
Administrator

¿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.

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.

Top Solution Authors
Top Kudoed Authors