Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
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
Solved! Go to Solution.
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?
Thanks - took a dataflow now and rearranged my process a bit
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?
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
15 | |
11 | |
8 | |
8 | |
7 |
User | Count |
---|---|
15 | |
13 | |
9 | |
6 | |
6 |