Forum Discussion
Cayshin
4 years agoFrequent Visitor
Dynamically splitting one Source Table into multiple separate query tables?
So I have a query table such as: Title Column 1 Column 2 A random data random data A random data random data A random data random data B random data random data B random...
ChenwuZhu_Gmail
4 years agoResolver I
Hi Cayshin ,
Maybe you can try use Group by to group the original table.
Then create an invoke function via Blank Query to create a new table.
invoke function:
let
Source = (x as number) =>
let
tbl = #"Table"{x}[_table]
in
tbl
in
Source
Then if you enter a number and invoke, it will create a new table.
Best regards.
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.