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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
craig811
Helper III
Helper III

How do i delete rows with text

Hi,

 

In colum1 I want to delete rows with text 'Ending Balance for Period' and 'GL JE Name'  how would I do this?

 

Many thanks 

1 ACCEPTED SOLUTION
edhans
Super User
Super User

Just filter them out. The logic here is you won't technically be removing them, but you'll be selecting all rows that don't have that text.

 

  1. On the column where this text appears, click the filter icon dropdown next to the column name and select Text Filters, then Does Not Contain
  2. Fill in the dialog box as shown below.

It will generate code similar to this:

 

=Table.SelectRows(#"Changed Type", each not Text.Contains([ID], "Ending Balance for Period") and not Text.Contains([ID], "GL JE Name"))

 

 

2020-02-13 08_04_50-.png



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

View solution in original post

3 REPLIES 3
Anonymous
Not applicable

Remove Rows Using Power Query
  1. This will open up the Power Query Editor.
  2. Go to Home > Reduce Rows > Remove Rows > Remove Top Rows.
  3. Go to Home > Reduce Rows > Remove Rows > Remove Bottom Rows.
  4. Go to Home > Reduce Rows > Remove Rows > Remove Alternate Rows.
edhans
Super User
Super User

Just filter them out. The logic here is you won't technically be removing them, but you'll be selecting all rows that don't have that text.

 

  1. On the column where this text appears, click the filter icon dropdown next to the column name and select Text Filters, then Does Not Contain
  2. Fill in the dialog box as shown below.

It will generate code similar to this:

 

=Table.SelectRows(#"Changed Type", each not Text.Contains([ID], "Ending Balance for Period") and not Text.Contains([ID], "GL JE Name"))

 

 

2020-02-13 08_04_50-.png



Did I answer your question? Mark my post as a solution!
Did my answers help arrive at a solution? Give it a kudos by clicking the Thumbs Up!

DAX is for Analysis. Power Query is for Data Modeling


Proud to be a Super User!

MCSA: BI Reporting

Thank you again for the support

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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