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

Don't miss out! 2025 Microsoft Fabric Community Conference, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount. Prices go up February 11th. Register now.

Reply
bberlin
Frequent Visitor

Need help removing alternate rows

I want to remove the majority of rows from this data. I just want to keep the 2018 - (age number) row for each age. For the ss this would include rows 11 and 22. The last row I would like to keep would be 1111. Is there a way to delete rows in this pattern, deleting the 10 between each one?

remove alternate rows.PNG

1 ACCEPTED SOLUTION
kcantor
Community Champion
Community Champion

@bberlin 

You should be able to accomplish this in PowerQuery using the filter keys, selecting Text and keeping rows that "Contain" 2018. 

Or, if you prefer, use the actual M for this but make sure to reference your last step and change the field name to reflect your data. Here is the code for putting this below my last step of Change Type 1:

= Table.SelectRows(#"Changed Type1", each Text.Contains([Estimates], "2018"))





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

2 REPLIES 2
kcantor
Community Champion
Community Champion

@bberlin 

You should be able to accomplish this in PowerQuery using the filter keys, selecting Text and keeping rows that "Contain" 2018. 

Or, if you prefer, use the actual M for this but make sure to reference your last step and change the field name to reflect your data. Here is the code for putting this below my last step of Change Type 1:

= Table.SelectRows(#"Changed Type1", each Text.Contains([Estimates], "2018"))





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




If you only wanted every other row, you could insert an index column, then divide this by 2, and only keep the rows with either a full interga or decial (your choice)

 

regards,

Mathew

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Jan25PBI_Carousel

Power BI Monthly Update - January 2025

Check out the January 2025 Power BI update to learn about new features in Reporting, Modeling, and Data Connectivity.

Jan NL Carousel

Fabric Community Update - January 2025

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

Top Solution Authors