Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
My CSV has headers in columns 1 - 9, all the same values. I have data in columns 10 - 18. How can I remove the unnecessary headers from the rows and transpose them to be a promoted header with underneath it and not to the right off it
Solved! Go to Solution.
@Anonymous give this a try
let
Source = Csv.Document(
File.Contents("C:\temp\export.csv"),
[Delimiter = ",", Columns = 18, Encoding = 1252, QuoteStyle = QuoteStyle.None]
),
#"Changed Type" = Table.TransformColumnTypes(
Source,
{
{"Column1", type text},
{"Column2", type text},
{"Column3", type text},
{"Column4", type text},
{"Column5", type text},
{"Column6", type text},
{"Column7", type text},
{"Column8", type text},
{"Column9", type text},
{"Column10", type text},
{"Column11", type text},
{"Column12", type text},
{"Column13", type text},
{"Column14", type text},
{"Column15", type date},
{"Column16", type number},
{"Column17", type text},
{"Column18", Int64.Type}
}
),
all_columns = List.Buffer(Table.ToColumns(#"Changed Type")),
my_table = Table.FromColumns(List.Skip(all_columns, 9), List.Zip(List.FirstN(all_columns, 9)){0})
in
my_table
@Anonymous Why did you change my code? The very last line (after in) must be
my_table
Hello, @Anonymous try this
all_columns = List.Buffer(Table.ToColumns(Source)),
my_table = Table.FromColumns(List.Skip(all_columns, 9), List.Zip(List.FirstN(all_columns, 9)){0})
Thanks for this, I'm trying to put this in my query
Original:
let
Source = Csv.Document(File.Contents("C:\temp\export.csv"),[Delimiter=",", Columns=18, Encoding=1252, QuoteStyle=QuoteStyle.None]),
#"Changed Type" = Table.TransformColumnTypes(Source,{{"Column1", type text}, {"Column2", type text}, {"Column3", type text}, {"Column4", type text}, {"Column5", type text}, {"Column6", type text}, {"Column7", type text}, {"Column8", type text}, {"Column9", type text}, {"Column10", type text}, {"Column11", type text}, {"Column12", type text}, {"Column13", type text}, {"Column14", type text}, {"Column15", type date}, {"Column16", type number}, {"Column17", type text}, {"Column18", Int64.Type}}),
all_columns = List.Buffer(Table.ToColumns(Source)), my_table = Table.FromColumns(List.Skip(all_columns, 9), List.Zip(List.FirstN(all_columns, 9)){0})
in
#"Changed Type"
How do I adapt
all_columns = List.Buffer(Table.ToColumns(Source)), my_table = Table.FromColumns(List.Skip(all_columns, 9), List.Zip(List.FirstN(all_columns, 9)){0})
For the above query
@Anonymous give this a try
let
Source = Csv.Document(
File.Contents("C:\temp\export.csv"),
[Delimiter = ",", Columns = 18, Encoding = 1252, QuoteStyle = QuoteStyle.None]
),
#"Changed Type" = Table.TransformColumnTypes(
Source,
{
{"Column1", type text},
{"Column2", type text},
{"Column3", type text},
{"Column4", type text},
{"Column5", type text},
{"Column6", type text},
{"Column7", type text},
{"Column8", type text},
{"Column9", type text},
{"Column10", type text},
{"Column11", type text},
{"Column12", type text},
{"Column13", type text},
{"Column14", type text},
{"Column15", type date},
{"Column16", type number},
{"Column17", type text},
{"Column18", Int64.Type}
}
),
all_columns = List.Buffer(Table.ToColumns(#"Changed Type")),
my_table = Table.FromColumns(List.Skip(all_columns, 9), List.Zip(List.FirstN(all_columns, 9)){0})
in
my_table
Thank you @AlienSx for the quick reply 🙂
I should have mentioned that I am doing this in Excel.
I have used the below but nothing happens
In your query where you reference my_table to I need to use the name of the table in excel?
let
Source = Csv.Document(
File.Contents(
"C:\temp\export.csv"
),
[Delimiter = ",", Columns = 18, Encoding = 1252, QuoteStyle = QuoteStyle.None]
),
#"Changed Type" = Table.TransformColumnTypes(
Source,
{
{"Column1", type text},
{"Column2", type text},
{"Column3", type text},
{"Column4", type text},
{"Column5", type text},
{"Column6", type text},
{"Column7", type text},
{"Column8", type text},
{"Column9", type text},
{"Column10", type text},
{"Column11", type text},
{"Column12", type text},
{"Column13", type text},
{"Column14", type text},
{"Column15", type date},
{"Column16", type number},
{"Column17", type text},
{"Column18", Int64.Type}
}
),
all_columns = List.Buffer(Table.ToColumns(#"Changed Type")),
my_table = Table.FromColumns(List.Skip(all_columns, 9), List.Zip(List.FirstN(all_columns, 9)){0})
in
#"Changed Type"
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 3 | |
| 3 | |
| 2 | |
| 2 | |
| 2 |
| User | Count |
|---|---|
| 5 | |
| 4 | |
| 4 | |
| 4 | |
| 4 |