Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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
Thank You so much
but all returned dataset are not in the same table structure.
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) ) |
Check out the July 2025 Power BI update to learn about new features.
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.