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

Join the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now

Reply
kokos88
Regular Visitor

Get data from Web

Hi,

 

does anybody of you have an idea how to import data from the table on this website to Power BI? I can't do it using Get data from Web. I don't want to use excel file. Any other idea how it can be done? 

StatLine - Monthly labour participation and unemployment


Thank you

 

 

2 ACCEPTED SOLUTIONS
MasonMA
Super User
Super User

In Power BI use Get Data- 'OData Feed', You sample website OData root URL is 

{
  "odata.metadata":"https://opendata.cbs.nl/ODataApi/OData/80590eng/$metadata","value":[
    {
      "name":"TableInfos","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/TableInfos"
    },{
      "name":"UntypedDataSet","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/UntypedDataSet"
    },{
      "name":"TypedDataSet","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/TypedDataSet"
    },{
      "name":"DataProperties","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/DataProperties"
    },{
      "name":"CategoryGroups","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/CategoryGroups"
    },{
      "name":"Sex","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/Sex"
    },{
      "name":"Age","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/Age"
    },{
      "name":"Periods","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/Periods"
    }
  ]
}

 

Paste URL (For example, for 'TypedDataSet' it's 'https://opendata.cbs.nl/ODataApi/OData/80590ENG/UntypedDataSet'). repeat this process for all url you need and load tables to Power Query for transformations of your data there before creating a model for reporting. 

MasonMA_0-1772034258491.png

 

View solution in original post

Hey @kokos88 ,

 

If you cannot load the table using Get Data → Web, it is usually because the website loads the data dynamically (JavaScript), which Power BI cannot read directly from the rendered HTML.

In the case of StatLine – Monthly labour participation and unemployment from Statistics Netherlands, the data is not meant to be scraped from the webpage it is published through an official OData API, which is the correct and professional way to connect Power BI.

 

Instead of using the Web connector, use the OData Feed connector.

 

Recommended Method: Use OData Feed

In Power BI Desktop
Home → Get Data → OData Feed

Use the dataset OData URL from StatLine
(Each dataset has its own OData endpoint — you can find it on the dataset page under “Data API” or “OData link”.)

The URL format is usually like:

https://opendata.cbs.nl/ODataApi/odata/{DatasetCode}

For example (replace with the actual dataset code shown on the page):

https://opendata.cbs.nl/ODataApi/odata/85264ENG

 

After connecting:

Select the table called TypedDataSet

Load it into Power BI

Expand the columns as needed

 

 

If You Only Have the Dataset Code

You can also directly connect using Power Query (Advanced Editor):

let
    Source = OData.Feed("https://opendata.cbs.nl/ODataApi/odata/85264ENG"),
    TypedData = Source{[Name="TypedDataSet"]}[Data]
in
    TypedData

 

Why Web Connector Does Not Work

  • The table is rendered dynamically
  • Power BI Web connector only reads static HTML
  • The actual data sits behind an API endpoint

 

If this explanation helped, please mark it as the solution so others can find it easily.

If it helped, a quick Kudos is always appreciated it highlights useful answers for the community.

Thanks for being part of the discussion!

 

 

View solution in original post

5 REPLIES 5
kokos88
Regular Visitor

Thank you a lot for your answers. It works perfectly!! 🙂

MasonMA
Super User
Super User

In Power BI use Get Data- 'OData Feed', You sample website OData root URL is 

{
  "odata.metadata":"https://opendata.cbs.nl/ODataApi/OData/80590eng/$metadata","value":[
    {
      "name":"TableInfos","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/TableInfos"
    },{
      "name":"UntypedDataSet","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/UntypedDataSet"
    },{
      "name":"TypedDataSet","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/TypedDataSet"
    },{
      "name":"DataProperties","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/DataProperties"
    },{
      "name":"CategoryGroups","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/CategoryGroups"
    },{
      "name":"Sex","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/Sex"
    },{
      "name":"Age","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/Age"
    },{
      "name":"Periods","url":"https://opendata.cbs.nl/ODataApi/OData/80590ENG/Periods"
    }
  ]
}

 

Paste URL (For example, for 'TypedDataSet' it's 'https://opendata.cbs.nl/ODataApi/OData/80590ENG/UntypedDataSet'). repeat this process for all url you need and load tables to Power Query for transformations of your data there before creating a model for reporting. 

MasonMA_0-1772034258491.png

 

Thank you a lot! It works perfectly!

Hey @kokos88 ,

 

If you cannot load the table using Get Data → Web, it is usually because the website loads the data dynamically (JavaScript), which Power BI cannot read directly from the rendered HTML.

In the case of StatLine – Monthly labour participation and unemployment from Statistics Netherlands, the data is not meant to be scraped from the webpage it is published through an official OData API, which is the correct and professional way to connect Power BI.

 

Instead of using the Web connector, use the OData Feed connector.

 

Recommended Method: Use OData Feed

In Power BI Desktop
Home → Get Data → OData Feed

Use the dataset OData URL from StatLine
(Each dataset has its own OData endpoint — you can find it on the dataset page under “Data API” or “OData link”.)

The URL format is usually like:

https://opendata.cbs.nl/ODataApi/odata/{DatasetCode}

For example (replace with the actual dataset code shown on the page):

https://opendata.cbs.nl/ODataApi/odata/85264ENG

 

After connecting:

Select the table called TypedDataSet

Load it into Power BI

Expand the columns as needed

 

 

If You Only Have the Dataset Code

You can also directly connect using Power Query (Advanced Editor):

let
    Source = OData.Feed("https://opendata.cbs.nl/ODataApi/odata/85264ENG"),
    TypedData = Source{[Name="TypedDataSet"]}[Data]
in
    TypedData

 

Why Web Connector Does Not Work

  • The table is rendered dynamically
  • Power BI Web connector only reads static HTML
  • The actual data sits behind an API endpoint

 

If this explanation helped, please mark it as the solution so others can find it easily.

If it helped, a quick Kudos is always appreciated it highlights useful answers for the community.

Thanks for being part of the discussion!

 

 

Thank you a lot!! 

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

Check out the April 2026 Power BI update to learn about new features.

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon & SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.