Forum Discussion

ovetteabejuela's avatar
ovetteabejuela
Impactful Individual
9 years ago
Solved

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.

  • 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")
  • MarcelBeug's avatar
    MarcelBeug
    9 years ago

    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.

     

  • MarcelBeug's avatar
    MarcelBeug
    9 years ago

    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.

9 Replies

  • MarcelBeug's avatar
    MarcelBeug
    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")
    • ovetteabejuela's avatar
      ovetteabejuela
      Impactful Individual

      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?

      • MarcelBeug's avatar
        MarcelBeug
        Community Champion

        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.