Forum Discussion
Just taking first row
- Anonymous2 years ago
Hi harry1605
As you are using Folder connector, it would be simple. In "Transform Sample File" query, Use Headers as First Row.
Then Keep Top 1 Row.
Then go to the combined query, if there is a step called "Changed Type", remove this step. You will have all column headers in the combined query.
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!
Hi,
with csv files
let
Source = Folder.Files("C:\Temp"),
csv_files = Table.SelectRows(Source, each [Extension] = ".csv"),
Headers = Table.Combine(
Table.AddColumn(
csv_files,
"Header",
each Table.FromRecords({[Name = [Name]] & Csv.Document([Content],null,";"){0}})
)[Header])
in
Headers
Stéphane
Hi Stephane,
Thank you for your response. I am new to power query so can I confirm the following is correct or if you can correct for me:
1. I have opened a new excel workbook and selected get data from folder and have chosen the combine and transform option
2. When in the power query editor I go to the transform file step (or is it another step or way) I replace from the let statement with your code - my files are xlsx so replace csv
Thanks
- Anonymous2 years agoNot applicable
Hi harry1605
As you are using Folder connector, it would be simple. In "Transform Sample File" query, Use Headers as First Row.
Then Keep Top 1 Row.
Then go to the combined query, if there is a step called "Changed Type", remove this step. You will have all column headers in the combined query.
Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!- harry16052 years agoRegular Visitor
Hi Jing,
so sleek and so cool thank you.
Followed your instructions I had to de promote the header and take the top row and bingo got what I wanted!
Stephane thanks also for taking the time to support.