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

Compete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.

Reply
davidz106
Helper III
Helper III

Remove all columns after certain value

I want to remove all columns after the column that is named "Q3". How should I write this in M?

 

The number of columns before Q3 is dynamic. 

 

Regrads,

Dave

1 ACCEPTED SOLUTION
Vijay_A_Verma
Super User
Super User

Insert following statement where you can replace Source with previous step

= Table.RemoveColumns(Source,List.RemoveRange(Table.ColumnNames(Source),0,List.PositionOf(Table.ColumnNames(Source),"Q3")+1))

View solution in original post

2 REPLIES 2
Vijay_A_Verma
Super User
Super User

Insert following statement where you can replace Source with previous step

= Table.RemoveColumns(Source,List.RemoveRange(Table.ColumnNames(Source),0,List.PositionOf(Table.ColumnNames(Source),"Q3")+1))

Works lika a charm! Thank you!

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors