Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello
I have this message every monday while I try to refresh my report on power bi service. I have already uploaded microsoft .ACE.oled.12.0', but it doesn't solve the problem. To update my report I need to open the file via power bi desktop.
Erreur de source de données: | DataSource.NotFound: Excel Workbook: The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine. The 64-bit version of the Access Database Engine OLEDB provider may be required to read this type of file. To download the client software, visit the following site: Fichiers Sources. |
URI du cluster: | WABI-NORTH-EUROPE-I-PRIMARY-redirect.analysis.windows.net |
ID d'activité: | 963e54dd-e4df-4744-b5e1-3b2e0c430d6f |
ID de demande: | 5be7d3fe-bcb9-36d2-3685-aa5da22540a6 |
Heure: | 2024-12-23 08:26:37Z |
Solved! Go to Solution.
Hi @yamina , thank you for reaching out to the Microsoft Fabric Community Forum.
Since you've already verified your SharePoint connection, credentials, API version, and M code logic, the key takeaway is that Power BI Service struggles to read the file until you manually open and save it in Excel. This suggests that SharePoint might be caching an older version or locking the file.
The best next step is to report this issue to Microsoft Support, as it may be a bug or a backend issue with how Power BI Service interacts with SharePoint. You can provide them with all the troubleshooting steps you've already taken, which will help them understand the issue better and provide a resolution. They might be able to identify something specific about your admin account setup or provide a solution that isn't immediately obvious.
Below is the link to create Microsoft Support ticket:
How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn
If this helps, please consider marking it 'Accept as Solution' so others with similar queries may find it more easily. If not, please share the details.
Thank you.
Hi @yamina , We are closing this thread as we haven't heard from you in a while, according to our follow-up policy. If you have any more questions, please start a new thread on the Microsoft Fabric Community Forum. We will be happy to assist you! Thank you for being part of the community!
Hi @yamina , Hope your issue is solved. If it is, please consider marking the answer 'Accept as solution', so others with similar issues may find it easily. If it isn't, please share the details. Thank you.
hi @v-hashadapu ,
I check all the points. The source is on sharepoint folder which contain excel files. I think I have a problem with the he Data Source Credentials but I can't find the way to set it ( ? Navigate to Settings > Data Source Credentials). I already use power automate to refresh my report on power bi service.
Hi @yamina ,
If the issue is with the Data Source Credentials, we can set the data source credentials properly for the SharePoint folder by following the below steps:
If this helps, please mark it 'Accept as Solution', so others with similar queries may find it more easily. If not, please share the details.
Thank you.
Hi @v-hashadapu
This is what I see when I go to setting in power bi service , I don' t find dataset .
Hi @yamina , thank you for reaching out to the Microsoft Fabric Community Forum.
Go to workspaces -> Select your workspace -> Click on three dots (ellipsis) beside the semantic model of your report -> select settings -> Click on Data Source Credentials -> Edit Credentials.
If this helps, please consider marking it 'Accept as Solution' so others with similar queries may find it more easily. If not, please share the details.
Thank you.
hi @v-hashadapu
Thank you for you clear explanation. I
I manage to update the data source credentials but it seemed to be well configured. Let's see on next monday if the report wil be refresh correctly.
Have a good weekend.
Hi @yamina , Happy to help. Please share the details, if it didn't work.
If it does, Please consider marking it 'Accept as Solution' so others with similar queries may find it easily.
unfortunately, the problem is still presents.
in power bi service I have this error.
"Erreur de source de donnéesDataSource.NotFound: Excel Workbook: The 'Microsoft.ACE.OLEDB.12.0' provider is not registered on the local machine. The 64-bit version of the Access Database Engine OLEDB provider may be required to read this type of file. To download the client software, visit the following site: . Microsoft.Data.Mashup.ErrorCode = 10478. . The exception was raised by the
In power bi desktop I have this error
I have already uploaded and install The 64-bit version of the Access Database Engine OLEDB
I really don't understand.
Hi @yamina , thank you for reaching out to the Microsoft Fabric Community Forum.
Power BI Desktop file -> Transform Data -> Advanced Editor
Example: Instead of
Source = Excel.Workbook(File.Contents("C:\localpath\filename.xlsx"))
Use
Source = SharePoint.Files("https://company.sharepoint.com/sites/TeamSite", [ApiVersion = 15]),
Filtered = Table.SelectRows(Source, each Text.Contains([Name], "filename.xlsx")),
FileBinary = Filtered{0}[Content],
ExcelData = Excel.Workbook(FileBinary, null, true)
If this helps, please consider marking it 'Accept as Solution' so others with similar queries may find it more easily. If not, please share the details.
Thank you.
Hi @v-hashadapu
I have already check this point also
But I find a way to refresh the report, by opening the new excel file in the folder and save it. After I open the report in power BI desktop and update the datas. It works But i need to refresh it by power bi service.
Hi @yamina ,
If the path format, data source credentials, and SharePoint Folder Connector are correct, the issue lies elsewhere. Please consider below steps:
hi @v-hashadapu
1 point : I have other pbi report connected to other files in this folder and it works.
2 point : The gateaway is correctly configured
3 point : I think that the problem is here because when I open the file in excel and save it I can update the report on power bi desktop only.
4 point Alread cheked
5 point ; How can I identify hardcoded paths or outdated references?
6 point ; for power BI desktop I worked on the novembre 2024 version.
thank you for Helpinh me.
Hi @yamina ,
Please refer below steps to check the M code in the Advanced Editor for any hardcoded file paths or outdated references to the Excel file.
Shown: Source = Excel.Workbook("C:\path\to\your\file.xlsx")
Replaced: Source = SharePoint.Files("https://company.sharepoint.com/sites/TeamSite", [ApiVersion = 15]),
Filtered = Table.SelectRows(Source, each Text.Contains([Name], "filename.xlsx")),
FileBinary = Filtered{0}[Content],
ExcelData = Excel.Workbook(FileBinary, null, true)
If this helps, please consider marking it 'Accept as Solution' so others with similar queries may find it more easily. If not, please share the details.
Thank you.
hi @v-hashadapu
The same mistake remains this morning
My source is correctly connected to my sharepoint
In pb desktop
Here the last file included in my shrepoint
But when I open the last file in excel and save it, it works only in power bi desktop
Hi @yamina , thank you for reaching out to the Microsoft Fabric Community Forum.
Please consider below:
Source = SharePoint.Files("https://yourcompany.sharepoint.com/sites/YourSite", [ApiVersion = 14]),
FilteredFiles = Table.SelectRows(Source, each Text.Contains([Name], "yourfile.xlsx")),
FileBinary = FilteredFiles{0}[Content],
ExcelData = Excel.Workbook(FileBinary, null, true)
in
ExcelData
Source = Excel.Workbook(File.Contents("yourfile.xlsx"), null, true),
AddedColumn = Table.AddColumn(Source, "Dummy", each 1)
Save, refresh, publish to Power BI Service, and see if the refresh works.
If this helps, please consider marking it 'Accept as Solution' so others with similar queries may find it more easily. If not, please share the details.
Thank you.
HI @v-hashadapu
Thank you for coming back to me and try to solve my problem.
As ytou can see I tried to change my sharepoint version to 14 and it doesn't change anything see the error message below
I also chek in my sharepoint version but i don't know what i have to check
Where can i add the dummy transformation in power query in the edit file i suppose but where
let
Source = SharePoint.Files("https://groupexxxxx.sharepoint.com/sites/PerformanceSAV/", [ApiVersion = 14]),
#"Lignes filtrées" = Table.SelectRows(Source, each ([Folder Path] = "https://groupexxxxx.sharepoint.com/sites/PerformanceSAV/Shared Documents/Fichiers sources/1. IAD/20. Suivi des RAC/Fichiers Sources/")),
#"Fichiers masqués filtrés1" = Table.SelectRows(#"Lignes filtrées", each [Attributes]?[Hidden]? <> true),
#"Appeler une fonction personnalisée1" = Table.AddColumn(#"Fichiers masqués filtrés1", "Transformer le fichier (3)", each #"Transformer le fichier (3)"([Content])),
#"Colonnes renommées1" = Table.RenameColumns(#"Appeler une fonction personnalisée1", {"Name", "Source.Name"}),
#"Autres colonnes supprimées1" = Table.SelectColumns(#"Colonnes renommées1", {"Source.Name", "Transformer le fichier (3)"}),
#"Colonne de tables développée1" = Table.ExpandTableColumn(#"Autres colonnes supprimées1", "Transformer le fichier (3)", Table.ColumnNames(#"Transformer le fichier (3)"(#"Exemple de fichier (3)"))),
#"Type modifié" = Table.TransformColumnTypes(#"Colonne de tables développée1",{{"Source.Name", type text}, {"id_stat_motif", Int64.Type}, {"code_societe", type text}, {"code_lieu", type text}, {"prefixe_dossier", Int64.Type}, {"num_dossier", Int64.Type}, {"type_rappel", type text}, {"contenu_dde_appel", type text}, {"id_motif", Int64.Type}, {"motif_rac", type text}, {"date_appel", type date}, {"heure_appel", type time}, {"contenu_reponse_sav", type text}, {"date_reponse", type date}, {"heure_reponse", type time}, {"delai", type text}, {"id_user", Int64.Type}, {"nom", Int64.Type}}),
#"Personnalisée ajoutée" = Table.AddColumn(#"Type modifié", "Personnalisé", each [code_societe]&Text.PadStart([code_lieu],3,"0")),
#"Lignes filtrées1" = Table.SelectRows(#"Personnalisée ajoutée", each true),
#"Colonnes renommées" = Table.RenameColumns(#"Lignes filtrées1",{{"Personnalisé", "Code SAV"}}),
#"Premiers caractères insérés" = Table.AddColumn(#"Colonnes renommées", "Premiers caractères", each Text.Start(Text.From([heure_appel], "fr-FR"), 2), type text),
#"Colonnes renommées2" = Table.RenameColumns(#"Premiers caractères insérés",{{"Premiers caractères", "heure appel"}}),
#"Duplication de la colonne" = Table.DuplicateColumn(#"Colonnes renommées2", "date_appel", "date_appel - Copier"),
#"Semaine de l'année calculée" = Table.TransformColumns(#"Duplication de la colonne",{{"date_appel - Copier", Date.WeekOfYear, Int64.Type}}),
#"Colonnes renommées3" = Table.RenameColumns(#"Semaine de l'année calculée",{{"date_appel - Copier", "Semaine"}})
in
#"Colonnes renommées3"
thank you for helping me
Hi @yamina , thank you for reaching out to the Microsoft Fabric Community Forum.
Since you've already verified your SharePoint connection, credentials, API version, and M code logic, the key takeaway is that Power BI Service struggles to read the file until you manually open and save it in Excel. This suggests that SharePoint might be caching an older version or locking the file.
The best next step is to report this issue to Microsoft Support, as it may be a bug or a backend issue with how Power BI Service interacts with SharePoint. You can provide them with all the troubleshooting steps you've already taken, which will help them understand the issue better and provide a resolution. They might be able to identify something specific about your admin account setup or provide a solution that isn't immediately obvious.
Below is the link to create Microsoft Support ticket:
How to create a Fabric and Power BI Support ticket - Power BI | Microsoft Learn
If this helps, please consider marking it 'Accept as Solution' so others with similar queries may find it more easily. If not, please share the details.
Thank you.
Hi @yamina ,Thank you for reaching out to Microsoft Fabric Community Forum.
If this helps, please mark it ‘Accept as Solution’, so others with similar queries may find it more easily. If not, please share the details.
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
User | Count |
---|---|
30 | |
20 | |
19 | |
13 | |
13 |
User | Count |
---|---|
29 | |
20 | |
19 | |
18 | |
16 |