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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more

Reply
Anonymous
Not applicable

Power Query keep first and last columns only

Hi,

 

I need to keep the first and last columns of multiple sheets I'm pulling in from Excel.

 

They vary in number of columns and I'm utilising the same Power Query to transform them.

 

If I use the "Remove Other Columns" wizard it hardcodes the column numbers which means when I use it for the next sheet it is trying to keep a non-existant column.

 

Is there anyway of saying in PQ to keep the first an alst column without referencing the column numbers?

 

Thanks.

1 ACCEPTED SOLUTION
MarcelBeug
Community Champion
Community Champion

Sure:

 

    KeepColumns = {List.First(Table.ColumnNames(Name_of_your_previous_step)),List.Last(Table.ColumnNames(Name_of_your_previous_step))},
    #"Removed Other Columns" = Table.SelectColumns(Name_of_your_previous_step,KeepColumns)

 

Specializing in Power Query Formula Language (M)

View solution in original post

2 REPLIES 2
MarcelBeug
Community Champion
Community Champion

Sure:

 

    KeepColumns = {List.First(Table.ColumnNames(Name_of_your_previous_step)),List.Last(Table.ColumnNames(Name_of_your_previous_step))},
    #"Removed Other Columns" = Table.SelectColumns(Name_of_your_previous_step,KeepColumns)

 

Specializing in Power Query Formula Language (M)
Anonymous
Not applicable

Thanks for that Marcel

Helpful resources

Announcements
Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

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 Solution Authors