I've been able to connect to my SharePoint library. I'm attempting to get the attribute columns out of the rows in this table but not the files they are related to. Because the files are sizable, i'm hoping to simply skim off the attributes.
Here is the Power Query code i'm working from so far:
let Source = SharePoint.Contents("https://<Redacted>.com/Compliance", [ApiVersion = 14]), IncidentReports = Source{[Name="IncidentReports"]}[Content] in IncidentReports
Which gets me:
Later on i'll want to expand the column on the right called "Attributes" as that is where the data i need is.
Any assistance would be greatly appreciated.