Hello. How would I remove all spaces from all column headers in power query with a large table? i.e "Part Number" needs to be "PartNumber"
I have succeeded using a small table with 10 columns and 10 rows by:
demoting headers
transposing the table
adding a custom column with Text.Remove([Column1]," ")
then transposing the table back and promoting headers with the new custom column names that have the spaces removed
My issue is that I have a table with 40+ columns and 165000 rows. the table is too large to transpose per the method above.
Any help would be appreciated. I am new to PQ
I have succeeded using a small table with 10 columns and 10 rows by:
demoting headers
transposing the table
adding a custom column with Text.Remove([Column1]," ")
then transposing the table back and promoting headers with the new custom column names that have the spaces removed
My issue is that I have a table with 40+ columns and 165000 rows. the table is too large to transpose per the method above.
Any help would be appreciated. I am new to PQ