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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
ovetteabejuela
Impactful Individual
Impactful Individual

Power Query - Delete After this Row

(PBIX File) Remove After This Row

 

How do you delete the remaining rows after an instance of an entry. For example if I found the entry "DeleteStartingThisRow" PowerQuery will grab the row number and delete all the entries starting from that row until the last entry.

3 ACCEPTED SOLUTIONS
MarcelBeug
Community Champion
Community Champion

No need for Power Query to grab the row number.

You can add a step by choosing Keep Rows - Keep Top Rows on the Home tab, just enter a dummy number and then adjust the code to:

 

= Table.FirstN(#"Changed Type",each [Header] <> "DeleteStartingThisRow")
Specializing in Power Query Formula Language (M)

View solution in original post

You need a function in which the required transformations are done.

Next you can use this function for all (selected) files in the folder.

 

This will be done for you if you expand the binaries column from the navigation table with the files in your folder.

In this topic I explained this functionality, that was introduced with the November 2016 Update.

This will create some objects, including a "Transform Sample Binary" Query in which you shoud apply your transformations.

These transformations will be automatically propagated to the function that is used to expand all binaries.

 

However this will only work if you expand 1 type of binary (only csv or only xlsx or only ....).

If you have mixed extensions, then you need to create similar functionality yourself.

Let me know if this is the case and if you need more information on how to do that,

I may not be able to respond within a few hours though.

 

Specializing in Power Query Formula Language (M)

View solution in original post

It looks like you are not using the Combine Binaries functionality how it's supposed to be used.

 

Just take a look at this video.

Specializing in Power Query Formula Language (M)

View solution in original post

9 REPLIES 9
MarcelBeug
Community Champion
Community Champion

No need for Power Query to grab the row number.

You can add a step by choosing Keep Rows - Keep Top Rows on the Home tab, just enter a dummy number and then adjust the code to:

 

= Table.FirstN(#"Changed Type",each [Header] <> "DeleteStartingThisRow")
Specializing in Power Query Formula Language (M)

@MarcelBeug, I have to get back to you on this... I initially thought this is working for me, but later did I found out that it isn't.

 

Well if it's only for just one file it would work but loading more file(CSV,XLSX) into the source folder everything(every row) below that "string" will be discarded, so no matter how many files is accumulated in that folder, my number of records is only that TopN rows constantly.

 

What do you think is the workaround for this?

You need a function in which the required transformations are done.

Next you can use this function for all (selected) files in the folder.

 

This will be done for you if you expand the binaries column from the navigation table with the files in your folder.

In this topic I explained this functionality, that was introduced with the November 2016 Update.

This will create some objects, including a "Transform Sample Binary" Query in which you shoud apply your transformations.

These transformations will be automatically propagated to the function that is used to expand all binaries.

 

However this will only work if you expand 1 type of binary (only csv or only xlsx or only ....).

If you have mixed extensions, then you need to create similar functionality yourself.

Let me know if this is the case and if you need more information on how to do that,

I may not be able to respond within a few hours though.

 

Specializing in Power Query Formula Language (M)

I think I have a question already, in my example(attached) I expanded the Table and not the Binary what is the difference? I'm researching after this though...

 

Expand Binary or Table.PNG

It looks like you are not using the Combine Binaries functionality how it's supposed to be used.

 

Just take a look at this video.

Specializing in Power Query Formula Language (M)

Hi Marcel,

 

I just did and yes I did learn from it.

 

I already applied the solution at the sample file so your proposed solution will be applied at the each single file and it went well.

 

Thank you very much for sharing.

I think I know what you're talking about, let me try though...

Hi @MarcelBeug

 

I'm about to show this, but you've got a response already. But this is what I did, just maybe a reference to everyone who read this topic.

 

Version 2, Applied Marcel's Solution

Awesome! Absolutely Awesome! Thanks @MarcelBeug

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

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