I am invoking data source rules to point to a test version of a Sharepoint Online site. I consume lists and an Excel from the SP site. Deployment doesn't report any errors. However, when I refresh the dataset an error occurs:
The referenced Id matches the list which the PBIX points to - i.e. prior to application of the data source rules. If I check the lineage of the data sources in the PBI service, they point to the test versions (i.e. post application of rules).
Solved! Go to Solution.
Great - thanks for the steer. One minor change needed, the query failed to find the list using Name but worked using Title i.e. Source{[Title="NameOfYourList"]}[Items]
The second step in your Power Query is pointed at a List guid that doesn't exist in the site. If you open the Query in Advanced Power Editor, you'll see in the second line, a phrase that looks like this: Source{[Id="8dbcf008-7bc3-4ab0-ba87-60dda6b50015"]}[Items]. If you want to use the name of the list instead (helpful when testing), update the phrase to be Source{[Name="NameOfYourList"]}[Items]
Hope this helps!
Treb Gatte, Marquee Insights
Great - thanks for the steer. One minor change needed, the query failed to find the list using Name but worked using Title i.e. Source{[Title="NameOfYourList"]}[Items]
Oh yes, sorry was doing this from memory. 🙂 I'm glad it worked!