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

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more

Reply
ConfusedTurtle2
New Member

Automating extraction of table from HTML

Hi all,

 

I'm using an API to get data from statistics.gov.scot into Power BI. The second applied step after importing the data, 'Extracted Table from Html', uses a script like the following:

 

 

= Html.Table(Source, {{"Column1", "TABLE.clay_cube_slice > * > TR > :nth-child(1)"}, {"Column2", "TABLE.clay_cube_slice > * > TR > :nth-child(2)"}}, [RowSelector="TABLE.clay_cube_slice > * > TR"])

 

 

The issue is when this dataset is updated the latest value is a new column which is not pulled in. I realise this is because the above query is manually selecting a set amount of columns and this can be fixed by adding the new column to this script each month, but for the purposes of what I'm doing it would be much better if I could simply refresh my data and have it automatically include the latest available data. That being the case is there a way to automate the above process so it will just take all columns, even as more are added as the data is updated?

 

Thanks

 

1 ACCEPTED SOLUTION
lbendlin
Super User
Super User

Since they have an API you may just as well use it, instead of laboring around with screen scraping.

 

API - statistics.gov.scot Open Data User Guides

View solution in original post

1 REPLY 1
lbendlin
Super User
Super User

Since they have an API you may just as well use it, instead of laboring around with screen scraping.

 

API - statistics.gov.scot Open Data User Guides

Helpful resources

Announcements
Power BI DataViz World Championships

Power BI Dataviz World Championships

The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!

December 2025 Power BI Update Carousel

Power BI Monthly Update - December 2025

Check out the December 2025 Power BI Holiday Recap!

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