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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors