I want to add multiple columns in one step only.
I was able to find a custom function below.
Table.FromColumns(
Table.ToColumns(#"Removed Other Columns1") & {{null},{null}},
Table.ColumnNames(#"Removed Other Columns1") & {"NewCust1","NewCust2"}
)
It will add 2 columns with null on each cells however what I want to do is that all new columns is equal to an existing Column called Source.Name.
This is an easier way.