March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Hi Team,
Is it possible to create a parameter in Power BI , that swichtes the source between the local files and the same files stored in the sharepoint. If possible please let me know how to create this ?
Regards
Solved! Go to Solution.
Hi @ncbshiva,
Based on my test, you could refer to below steps in query editor:
Open the Advanced language and enter below code:
(para as number) => if para=1 then let Source = Excel.Workbook(Web.Contents("your sharepoint address"), null, true), Talk_Sheet = Source{[Item="Talk",Kind="Sheet"]}[Data], #"Promoted Headers" = Table.PromoteHeaders(Talk_Sheet, [PromoteAllScalars=true]), #"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"Full date", type date}, {"sale", Int64.Type}}) in #"Changed Type" else let Source = Excel.Workbook(File.Contents("your local file address"), null, true), Sheet1_Sheet = Source{[Item="Sheet1",Kind="Sheet"]}[Data], #"Promoted Headers" = Table.PromoteHeaders(Sheet1_Sheet, [PromoteAllScalars=true]), #"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"Full date", type date}, {"sale", Int64.Type}}) in #"Changed Type"
If you enter the number 1, it will load the data in your sharepoint:
If you enter the number 2, it will load the data in your local file:
Regards,
Daniel He
Hi @ncbshiva,
Based on my test, you could refer to below steps in query editor:
Open the Advanced language and enter below code:
(para as number) => if para=1 then let Source = Excel.Workbook(Web.Contents("your sharepoint address"), null, true), Talk_Sheet = Source{[Item="Talk",Kind="Sheet"]}[Data], #"Promoted Headers" = Table.PromoteHeaders(Talk_Sheet, [PromoteAllScalars=true]), #"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"Full date", type date}, {"sale", Int64.Type}}) in #"Changed Type" else let Source = Excel.Workbook(File.Contents("your local file address"), null, true), Sheet1_Sheet = Source{[Item="Sheet1",Kind="Sheet"]}[Data], #"Promoted Headers" = Table.PromoteHeaders(Sheet1_Sheet, [PromoteAllScalars=true]), #"Changed Type" = Table.TransformColumnTypes(#"Promoted Headers",{{"Full date", type date}, {"sale", Int64.Type}}) in #"Changed Type"
If you enter the number 1, it will load the data in your sharepoint:
If you enter the number 2, it will load the data in your local file:
Regards,
Daniel He
Hello,
AFAIK there is no way to switch the datasource dynamically.
However, if you can share some more details on WHAT you want to do instead of HOW you want to it, possibly we can share some ideas.
I have a requirement to connect to sharepoint files and sql server. To connect to sql server i need to use the VPN connection.
If i use that my internet will not work and i will not be albe to connect to sharepoint files. Because i need to merge both sharepoint files and data from the sql server after some transformations.
In this case, what I understand is, you will have to develop logic to timely pull the data from SQL & add that to Sharepoint. You can achieve this by writing some custom code/scripts or use MS Flow or alike. Once all your data is in SharePoint, you can then design your Power BI reports accordingly.
Hope, this helps!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
User | Count |
---|---|
90 | |
89 | |
85 | |
73 | |
49 |
User | Count |
---|---|
169 | |
144 | |
90 | |
70 | |
58 |