Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
GulianiG
Helper II
Helper II

Can a custom column be added at a given location in table?

Hi All,

When I add a custom table, it gets added at the end of the table.

Is there a way for us to define in M-Code, where we want the column to be inserted instead of end?

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Yes, custom column is always added at the end and then you will have to reorder it. Below is a formula which combines these. Here I am inserting custom column at index position of 2.

= Table.ReorderColumns(Table.AddColumn(#"Changed Type", "Custom", each List.Sum(List.LastN(Record.ToList(_),3))),List.InsertRange(Table.ColumnNames(#"Changed Type"),2,{"Custom"}))

 See the working here - Open a blank query - Home - Advanced Editor - Remove everything from there and paste the below code to test 

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Q", type text}, {"A", Int64.Type}, {"B", Int64.Type}, {"C", Int64.Type}, {"D", Int64.Type}, {"E", Int64.Type}, {"F", Int64.Type}, {"G", Int64.Type}}),
    Result = Table.ReorderColumns(Table.AddColumn(#"Changed Type", "Custom", each List.Sum(List.LastN(Record.ToList(_),3))),List.InsertRange(Table.ColumnNames(#"Changed Type"),2,{"Custom"}))
in
    Result

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @GulianiG 

 

You can use Transform > Move to move the custom column to another position after creating it. This would be easier. https://docs.microsoft.com/power-query/move-columns 

 

After you move a column, you will see the code of this step. The columns display in the order of the column name list. You can also change the item order in the list to change their display order.

vjingzhang_0-1654755783185.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it.

Vijay_A_Verma
Super User
Super User

Yes, custom column is always added at the end and then you will have to reorder it. Below is a formula which combines these. Here I am inserting custom column at index position of 2.

= Table.ReorderColumns(Table.AddColumn(#"Changed Type", "Custom", each List.Sum(List.LastN(Record.ToList(_),3))),List.InsertRange(Table.ColumnNames(#"Changed Type"),2,{"Custom"}))

 See the working here - Open a blank query - Home - Advanced Editor - Remove everything from there and paste the below code to test 

let
    Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content],
    #"Changed Type" = Table.TransformColumnTypes(Source,{{"Q", type text}, {"A", Int64.Type}, {"B", Int64.Type}, {"C", Int64.Type}, {"D", Int64.Type}, {"E", Int64.Type}, {"F", Int64.Type}, {"G", Int64.Type}}),
    Result = Table.ReorderColumns(Table.AddColumn(#"Changed Type", "Custom", each List.Sum(List.LastN(Record.ToList(_),3))),List.InsertRange(Table.ColumnNames(#"Changed Type"),2,{"Custom"}))
in
    Result

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

October Power BI Update Carousel

Power BI Monthly Update - October 2025

Check out the October 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Kudoed Authors