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

Did you hear? There's a new SQL AI Developer certification (DP-800). Start preparing now and be one of the first to get certified. Register now

Reply
AmberJane
Helper III
Helper III

Remove Unwanted RANDOM Rows from Data

I have a list of tickets I am pulling from a ticketing system into Power BI using ODATA. The report I am building will be sent to a client each month and will need to be "Groomed" before sending. 

 

Sometimes there is bad data/tickets that don't need to be in this report. There is no condition that I can power query off of as these will be one offs based off the monthly review.

 

I found a youtube video that worked but only seems to let me remove one row. I want to be able to remove multiple. Any suggestions. 

 

I added an index column and then used advanced editor: 

 

#"Added Index" = Table.AddIndexColumn(#"Sorted Rows", "Index", 0, 1, Int64.Type),
#"Remove Row" = Table.RemoveRows(#"Added Index",83)
in
#"Remove Row"

2 ACCEPTED SOLUTIONS
AmberJane
Helper III
Helper III

@Anonymous received an error:

 

Error: Expression.SyntaxError: Token ',' expected.

 

#"Added Index" = Table.AddIndexColumn(#"Removed Top Rows", "Index", 0, 1, Int64.Type)
#"Remove Row" = Table.SelectRows(#"Added Index", each not List.Contains({4,5}, [Index]))
in
#"Remove Row"

View solution in original post

Anonymous
Not applicable

Hi @AmberJane , You just missed a comma at the end of the previous step. 

 

Regards,

Jing

View solution in original post

4 REPLIES 4
AmberJane
Helper III
Helper III

@Anonymous received an error:

 

Error: Expression.SyntaxError: Token ',' expected.

 

#"Added Index" = Table.AddIndexColumn(#"Removed Top Rows", "Index", 0, 1, Int64.Type)
#"Remove Row" = Table.SelectRows(#"Added Index", each not List.Contains({4,5}, [Index]))
in
#"Remove Row"

Anonymous
Not applicable

Hi @AmberJane , You just missed a comma at the end of the previous step. 

 

Regards,

Jing

Oh my how embarrassing!! it worked thank you so much. 

Anonymous
Not applicable

Hi @AmberJane 

 

If you are sure which rows are unwanted by their Index numbers, you can try this 

#"Remove Row" = Table.SelectRows(#"Added Index", each not List.Contains({1,3,4,83}, [Index]))

Put all unwanted index numbers in a list {}. 

 

Best Regards,
Jing
If this post helps, please Accept it as Solution to help other members find it. Appreciate your Kudos!

Helpful resources

Announcements
April Power BI Update Carousel

Power BI Monthly Update - April 2026

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

New to Fabric survey Carousel

New to Fabric Survey

If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

FabCon and SQLCon Highlights Carousel

FabCon & SQLCon Highlights

Experience the highlights from FabCon & SQLCon, available live and on-demand starting April 14th.