Forum Discussion
Add headers to CSV file
- Anonymous8 years ago
HI underkar,
Based on double check on your snapshot, it seems like your columns are stored in table 2 with original column name and real column name.
For your scenario, I modify my formula to use table 2 columns to generate name parameter list which need to be use in table 1.
#"Renamed Columns" = Table.RenameColumns(#"Source",List.Zip({Table2[Column],Table2[Description]}))Regards,
Xiaoxin Sheng
- 8 years ago
Thanks Xaoxing!! It works!
Hi Anonymous, thanks you very much for your reply.
I think this code doesn't work in my example, because I don´t need to replace headers in "table1" with headers in "table2", what I need is to lookup Column1, Column2, etc in "table2" and return the text in column "Description" of "Table".
I hope I have explained this better....
#"Renamed Columns" = Table.RenameColumns(#"Source",List.Zip({Table.ColumnNames(#"Source"),Table.ColumnNames(Table2)}))
Many thanks
HI underkar,
Based on double check on your snapshot, it seems like your columns are stored in table 2 with original column name and real column name.
For your scenario, I modify my formula to use table 2 columns to generate name parameter list which need to be use in table 1.
#"Renamed Columns" = Table.RenameColumns(#"Source",List.Zip({Table2[Column],Table2[Description]}))
Regards,
Xiaoxin Sheng
- underkar8 years agoFrequent Visitor
Thanks Xaoxing!! It works!