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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

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
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

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