Forum Discussion
JillHenninger
Helper I
5 years agoSharePoint Authentication Issues
Hi all I have a dataset that refreshes nightly and taps into 6 SharePoint based Excelf files and one OData (connected to a SharePoint list). Way more often than not, the dataset won't refresh due to...
Anonymous
4 years agoNot applicable
I am having same issue regarding this. Does it have any solution?
bwag2023
3 years agoNew Member
What finally worked for me was going to Transform Data, and changing the source of the query from:
= Excel.Workbook(File.Contents("\\sharepoint.com@SSL\DavWWWRoot\sitespath\excelfile.xlsx"), null, true)
to:
= Excel.Workbook(Web.Contents("https://sharepointsite.com/sitepath/filepath/excelfile.xlsx"), null, true)
- BulldogTom1 year agoNew Member
This fix worked for me. Thanks!