Forum Discussion
rheitrich
6 years agoFrequent Visitor
SharePoint list based report will not refresh data.
Hello. I am new to the community and somewhat new to POWER BI. I have read anything I could find on similar issues but I cannot seem to figure out the solution. I have created a simpl...
- Anonymous6 years ago
Your row called "Removed Other Columns" is still refering to the deleted step. Most power query lines refer to a previous row. If you deleted the row in the Applied Steps, it makes the coding updates for you.
I'd expect this to work
let Source = SharePoint.Tables("SiteURL", [ApiVersion = 15]), #"SourceID" = Source{[Id="SourceID"]}[Items], #"Removed Other Columns" = Table.SelectColumns(#"SourceID",{"Title", "ShortName"}) in #"Removed Other Columns"
Anonymous
6 years agoNot applicable
Your row called "Removed Other Columns" is still refering to the deleted step. Most power query lines refer to a previous row. If you deleted the row in the Applied Steps, it makes the coding updates for you.
I'd expect this to work
let
Source = SharePoint.Tables("SiteURL", [ApiVersion = 15]),
#"SourceID" = Source{[Id="SourceID"]}[Items],
#"Removed Other Columns" = Table.SelectColumns(#"SourceID",{"Title", "ShortName"})
in
#"Removed Other Columns"
rheitrich
6 years agoFrequent Visitor
Thanks so much for your help!!