Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
it should be elementary but I can't find the way. I want to connect power bi with an Excel file in a URL, specifically this one (https://apps.fomento.gob.es/BoletinOnline2/sedal/32100500.XLS) but I find it impossible. can anyone help me?
Thanks.
Solved! Go to Solution.
HI, @vicentetic
did you use web connector?
look at this documentation. https://learn.microsoft.com/en-us/power-query/connectors/web/web
or another way is use python scripting. for example, get data >> other >> python script >> connect
import pandas as pd
import requests
from io import BytesIO
url = 'https://apps.fomento.gob.es/BoletinOnline2/sedal/32100500.XLS'
response = requests.get(url)
data = pd.read_excel(BytesIO(response.content))
data
hop that helps.
Proud to be a Super User!
HI, @vicentetic
did you use web connector?
look at this documentation. https://learn.microsoft.com/en-us/power-query/connectors/web/web
or another way is use python scripting. for example, get data >> other >> python script >> connect
import pandas as pd
import requests
from io import BytesIO
url = 'https://apps.fomento.gob.es/BoletinOnline2/sedal/32100500.XLS'
response = requests.get(url)
data = pd.read_excel(BytesIO(response.content))
data
hop that helps.
Proud to be a Super User!
Thank you. It's working. I had tried the connector but it gave me an error and it was that I had to update access software. Now everything is ok
Happy to help.
Appreciate the kudos. 👍
Proud to be a Super User!
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.