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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
nigi1978
Frequent Visitor

Question about the behavior of internal sub query processing in Power Query

Hi community

 

I would have  a question about the behavior of internal sub query processing in Power Query.

 

Let's assume we have a query (A) that reads an external datat source, like :

let
         Source = Table.FromRows(Json.Document(Binary.Decompress(Binary.FromText(..........),
         #"Changed Type" = Table.TransformColumnTypes(Source,{{"Input", type text}})
in
         #"Changed Type

 

And two queries (B) & (C) that take (A) as input, like:

let
        Source = (A),
#"Added Index" = Table.AddIndexColumn(Source, "Index", 0, 1)
        in
#"Added Index"

 

I need to ensure that (B) and (C) have exactly the same snapshot of the data as input. And as the data read by (A) might change at anytime, it will make a difference if the internal processing is like a one-time run of (A) with (B) & (C) just taking the result of this one-time run OR if (B) & (C) each trigger their own run of (A) in the background.

 

Is the processing in the way that (B) and (C) will have exactly the same data status? If not, how can I achieve this?

 

Thanks
 

 

 

1 ACCEPTED SOLUTION
Ehren
Microsoft Employee
Microsoft Employee

Unfortunately there isn't a built-in way to do this in PQ Desktop today. There are some workarounds, but they're not ideal.

 

One way to do this in the cloud world would be to use a dataflow. Load (A) as a computed entity, and then all the queries that reference it will get the same copy of (A). Is this an option for you?

View solution in original post

3 REPLIES 3
nigi1978
Frequent Visitor

Thanks - took a dataflow now and rearranged my process a bit

Ehren
Microsoft Employee
Microsoft Employee

Unfortunately there isn't a built-in way to do this in PQ Desktop today. There are some workarounds, but they're not ideal.

 

One way to do this in the cloud world would be to use a dataflow. Load (A) as a computed entity, and then all the queries that reference it will get the same copy of (A). Is this an option for you?

BA_Pete
Super User
Super User

Hi @nigi1978 ,

 

I'm tagging Ehren as he's the wizard you need for this, I think.

@Ehren , sorry to disturb, but can you take a look at this one and advise please?

 

Pete



Now accepting Kudos! If my post helped you, why not give it a thumbs-up?

Proud to be a Datanaut!




Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 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 Kudoed Authors