Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I'm new to PowerBI, I wrote a Python script to query and transform some data. The result is a table of tables where each row is a separate dataframe. This is what it looks like.
How can I split out the tables so that the query returns all 8 tables separately.
Solved! Go to Solution.
Hi @Anonymous ,
According to your description, if you want to get the seperate tables in the above table, simply create blank queries and modify the syntax in advanced editor like this:
let
Source = #"Table"[Custom]{0}
in
Source
Create eight queries and replace {0} with {1} to {7}. I attach my sample below for your reference.
let
Source = #"Table"[Custom]{0}
in
Source
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
According to your description, if you want to get the seperate tables in the above table, simply create blank queries and modify the syntax in advanced editor like this:
let
Source = #"Table"[Custom]{0}
in
Source
Create eight queries and replace {0} with {1} to {7}. I attach my sample below for your reference.
let
Source = #"Table"[Custom]{0}
in
Source
Best Regards,
Community Support Team _ kalyj
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Duplicate the table as many times as you have tables. Filter each one ona different value of [Name], then for each, click the underlined word Table in [Value] column.
Just out of curiosity, were you not able to use any of the various Get Data source types? Seems Python is an end-around to something that Power BI already probably handles natively.
Proud to be a Super User! | |
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.