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
ShirinArshadnia
Helper II
Helper II

Having multiple Table retured from a stored procedure into power Query

Hi everyone,

is there any solution to have multiple Table retured from a stored procedure into power Query?

I have a SP and it will load only  the first returened table and i Need all of them,

is there any solution or I should seperate them in another Stored procedure?

 

many thanks in advance

2 REPLIES 2
ShirinArshadnia
Helper II
Helper II

Thank You so much

but all returned dataset are not in the same table structure.

ThxAlot
Super User
Super User

It's, so far, the intrinsic limitation of PQ to receive only the first dataset returned by SP. A workround is tweak the SP as follows, if all returned dataset of the same table structure,

 

CREATE OR ALTER PROC sp_xxx
AS
BEGIN

-- First resulting dataset
SELECT * FROM XXX1

UNION ALL
-- dataset delimiter
SELECT 'DELIM','','',...

UNION ALL
-- Second resulting dataset
SELECT * FROM XXX2

END

 



Expertise = List.Accumulate(


        {Days as from Today},


        {Skills and Knowledge},


        (Current, Everyday) => Current & Day.LearnAndPractise(Everyday)


)



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.

February Power BI Update Carousel

Power BI Monthly Update - February 2026

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

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