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

Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now

Reply
Anonymous
Not applicable

Table.ExpandTableColumns: Too many requests (427)

Hello,

 

I am trying to expand a column containing tables. All the data is being requested via API. When I use Table.ExpandTableColumns, it seems as there are more API requests sent, which puts me over the limiting quota of the service, resulting in an 427 error.

Is there a way to expand columns slower? I tried combining it with Function.InvokeAfter, but I had no luck so far.

 

 

Steps:

1: 

= let
 Query = "Machines",
 Source = OData.Feed("https://api.securitycenter.windows.com/api/" & Query, null, [Implementation="2.0", MoreColumns=true])
in
 Source

 

2:

= Table.SelectColumns(Step1,{"computerDnsName", "software"})

 

3:

= Table.ExpandTableColumn(Step2, "software", {"name", "vendor"}, {"software.name", "software.vendor"})
= Function.InvokeAfter(()=> Table.ExpandTableColumn(Step2, "software", {"name", "vendor"}, {"software.name", "software.vendor"}), #duration(0,0,0,2))

 

 

Thank you guys in advance. If you need more information, feel free to ask.

 

1 REPLY 1
lbendlin
Super User
Super User

Since you already know which columns you need, why not specify them in the ODATA query string?

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.

March Power BI Update Carousel

Power BI Community Update - March 2026

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