Hi! I’m trying to add blank columns to my table, but when I do it creates a query with hundreds of repeated rows of the same data. So for example if I have 5 rows of data, it then creates the query and repeats that same data set a hundred times. Is there a better way of adding blank columns without this happening? I’m still learning power query so I’m not sure what I’m doing wrong. Below is the code I have. Thank you in advance!
=Table.AddColumn(# “Changed Type”, “ColumnName1”, each null)
& Table.AddColumn(# “Changed Type”, “ColumnName2”, each null)
& Table.AddColumn(# “Changed Type”, “ColumnName3”, each null)
…etc.
=Table.AddColumn(# “Changed Type”, “ColumnName1”, each null)
& Table.AddColumn(# “Changed Type”, “ColumnName2”, each null)
& Table.AddColumn(# “Changed Type”, “ColumnName3”, each null)
…etc.