Hi,
I'm wondering if Kutools for Excel offers a feature similar to Excel's Power Query that allows users to filter and copy specific columns from one worksheet to another. This functionality would be immensely helpful for data organization and manipulation.
For instance, in "Sheet1," I can filter and copy columns like Column1, Column3, Column5, and Column7 to "Sheet2." Could you please confirm if this feature is available in Kutools or if there's a recommended approach to achieve this?
let
Source = Excel.CurrentWorkbook(){[Name="Sheet1"]}[Content],
FilteredColumns = Table.SelectColumns(Source, {"Column1", "Column3", "Column5", "Column7"})
in
FilteredColumns
Thank you for your assistance.
Thanks
-Gan
I'm wondering if Kutools for Excel offers a feature similar to Excel's Power Query that allows users to filter and copy specific columns from one worksheet to another. This functionality would be immensely helpful for data organization and manipulation.
For instance, in "Sheet1," I can filter and copy columns like Column1, Column3, Column5, and Column7 to "Sheet2." Could you please confirm if this feature is available in Kutools or if there's a recommended approach to achieve this?
let
Source = Excel.CurrentWorkbook(){[Name="Sheet1"]}[Content],
FilteredColumns = Table.SelectColumns(Source, {"Column1", "Column3", "Column5", "Column7"})
in
FilteredColumns
Thank you for your assistance.
Thanks
-Gan
- Page :
- 1
There are no replies made for this post yet.