Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
vicentetic
Frequent Visitor

connect an excel with power bi from an url

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.

1 ACCEPTED SOLUTION
rubayatyasmin
Super User
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. 

 

rubayatyasmin_0-1689517080227.png


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


View solution in original post

4 REPLIES 4
rubayatyasmin
Super User
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. 

 

rubayatyasmin_0-1689517080227.png


Did I answer your question? Mark my post as a solution!super-user-logo

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. 👍


Did I answer your question? Mark my post as a solution!super-user-logo

Proud to be a Super User!


Dhairya
Solution Supplier
Solution Supplier

Hey @vicentetic 
Please try using "web" as Source in Get Data option.

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors