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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

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
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

Top Solution Authors
Top Kudoed Authors