Forum Discussion
Anonymous
5 years agoNot applicable
How to create a 1 one column query based on another query without duplicate the query ?
Hi, I have a long query (#1) resulting in a multi column table. I would like for different reasons to create a new query (#4) wich is the copy of column A of query #1 and to keep query #1 in my...
- 5 years ago
Make a new blank Query.
Paste this (with your table name) in the advanced editor:
let Source = #"TableX"[col1] in SourceThat will give a list (which you can convert to table from the interface)
- Anonymous5 years ago
let Source = #"TableX"[[col1]] in Sourceusing the double [[ and ]] you get a column-table directly.
But I don't think this solves the problem of performance
Qualche miglioramento si può ottenere usando Table.Buffer to wrapp the column-table
HotChilli
5 years agoCommunity Champion
Make a new blank Query.
Paste this (with your table name) in the advanced editor:
let
Source = #"TableX"[col1]
in
Source
That will give a list (which you can convert to table from the interface)
- Anonymous5 years agoNot applicable
let Source = #"TableX"[[col1]] in Sourceusing the double [[ and ]] you get a column-table directly.
But I don't think this solves the problem of performance
Qualche miglioramento si può ottenere usando Table.Buffer to wrapp the column-table