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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
Missippy
Frequent Visitor

Source page keeps getting small changes

I run power queries every morning where I download a lot of data from a webpage. The source keeps making these small changes, like adding a column to the page I am trying to download. When they do, my query won't run any longer. They did this about 4 weeks ago and I just got all the queries up and running again. Now they have added 1 more column. Is there anything I can do to avoid the total rebuild?

4 REPLIES 4
ralf_anton
Regular Visitor

Hallo @Missippy ,

Eine pauschale Aussage hierzu ist leider nicht möglich, da Websites die Daten auf unterschiedlichen Wegen zur Verfügung stellen können. Um Ihre Frage konkreter beantworten zu können, wäre es hilfreich, die Website zu kennen.

Über den M-Code:

M ist die Abfragesprache für PQ. Bei Queries, die ausschließlich über das Menü angelegt werden, wird sie automatisch generiert. Sie können es jedoch im Editor-Menü Start --> Erweiterter Editor anzeigen und bearbeiten.

v-pgoloju
Community Support
Community Support

Hi @Missippy,

 

Thank you for reaching out to the Microsoft Fabric Forum Community.

 

Thanks for sharing the details. Since you're not using M code directly and are building the query through the UI, it might help to take a closer look at the actual query steps. If possible, could you please share a sample PBIX file (with either non-sensitive data or sample data) so we can better understand and assist you with the issue? or Please share the screenshot of advanced editor M code.

 

Home tab → Transform Data → In Power Query, select your query → Home tab → Advanced Editor.

 

Kind regards,
Prasanna Kumar

v-pgoloju
Community Support
Community Support

Hi @Missippy,

 

Thanks for reaching out to the Microsoft Fabric Forum Community.

 

If you want to ignore newly added columns and only keep specific ones, you can use the following M code.

Table.SelectColumns(Source, {"Col1", "Col2"}, MissingField.Ignore)

This helps avoid errors when the source adds new columns unexpectedly.

 

However, if you want to load the entire table dynamically, including all columns, you can get the list of all columns using.

AllColumns = Table.ColumnNames(Source)

 

If the issue still persists, please share the M code you’re using so we can take a closer look and help you resolve it.

 

Thanks & regards,
Prasanna Kumar

 

Thank you for responding. Unfortunately I don't know what m-code is. When building a query, I just select data, from web, paste the link to the web page, choose columns and such, add to page. That's it. 

Helpful resources

Announcements
June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors
Top Kudoed Authors