How to Split PDF files into Multiple Files with Uipath

Поделиться
HTML-код
  • Опубликовано: 17 окт 2024

Комментарии • 106

  • @andersjensenorg
    @andersjensenorg  4 года назад +3

    Hey Viewer. You might wanna check out my new +2 hour UiPath RPA Beginners Tutorial: ruclips.net/video/3ZKzTHdpsTs/видео.html. If you have any questions to my videos, please leave a comment - I will try to answer most comments (specific questions/part of workflows are easier than solving entire workflows).

  • @cedricpendji4972
    @cedricpendji4972 4 года назад +2

    Great content as usual Anders, always learn something new from your videos. Keep them coming, much appreciated.

    • @andersjensenorg
      @andersjensenorg  4 года назад

      Hey Cedric. Wow, awesome! Let me know, if you can see something at some point, I could improve (even the smallest things) 😊 Kind regards, Anders

  • @tupuranisrinivasa8608
    @tupuranisrinivasa8608 4 года назад

    Another Good Presentation. Most of your videos are covering Use Cases intuitively and making the viewers easily get connected with various concepts. Every time I am leaving with some good learning & I certainly look forward for some more. Thanks for sharing the same.

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey Tupurani Srinivasa
      Thanks for writing. I'm getting more than 40 questions/comments every day and having difficulty answering everyone (I try my best).
      I've created my UiPath Groups, where we all can post and solve problems or hang out around our favorite tool, UiPath. So you're very welcome. Get the addresses here: ruclips.net/video/C6xmGfEL07I/видео.html
      Have a great day.
      Kind regards,
      Anders

  • @tmvideo1000
    @tmvideo1000 4 года назад +1

    Hej Anders, Tak for alle dine gode Uipath videoer.

    • @andersjensenorg
      @andersjensenorg  4 года назад

      Hej Torben. Fedt, der er også er danskere (el. i hvert fald en enkelt), der ser mine videoer 😀

  • @cemacemchannel
    @cemacemchannel 3 года назад +1

    Hi thank you for this video.
    I have a question, is it possible to split PDF file by match a text in the middle of page. So for example i have pdf file with 1 page, then i split into 2 file ( first file is top to middle and second file is middle to bottom) ?

    • @andersjensenorg
      @andersjensenorg  3 года назад

      Hey Jhonny. Sure, check this: ruclips.net/video/INnbGPF5MwE/видео.html And thank you a lot, these comments/questions help me a lot. Kind regards, Anders

  • @angkai1911
    @angkai1911 4 года назад +1

    Hi Anders Jensen,
    Thanks for your video! Anyway, do you know how to split the column in excel from 1 column into 2 column?
    eg: I have 1 column contain "I am 32", what I want is separate the column into 2 column like "I am" and "32". Please advise. Thanks.

    • @andersjensenorg
      @andersjensenorg  4 года назад +2

      Sure. What you want to do is to split your string. We can do it in a lot of ways, but I think the easiest is to:
      - For Each Row of dtYourDataTable
      - Assign: row.item("Column2") = row.item("Column1").ToString.Substring(0,row.item("Column1").ToString.IndexOf("am")+2)
      - Assign: row.item("Column3") = row.item("Column1").ToString.Substring(row.item("Column1").ToString.IndexOf("am")+3)
      Given that the structure always will be the same. If if will vary, then you will need to use RegEx.
      Let me know, if this solves it?
      Kind regards, Anders

  • @fortak2006
    @fortak2006 3 года назад +1

    hi Jensen, any idea of getting PDF bookmark text and each bookmark page range? eg, there are 10 bookmarks in a PDF file, the second bookmark text is "ABC", and the page range is page 13 to page 19. Thank you so much

    • @andersjensenorg
      @andersjensenorg  3 года назад

      Hey Lin. Thanks for writing. Can we use Regex: ruclips.net/video/uCdBC2pXPyY/видео.html Kind regards, Anders

  • @IngRomantob
    @IngRomantob 2 года назад +1

    Its awesome , thank you so much for your effort you are the best ! , you are giving to us a solid knowledge , Our Bot depends our imagination. thanks again ! Regards from Mexico

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey Roman, thanks a ton for the nice comment 🤗 Kind regards, Anders

  • @tobiewaldeck7105
    @tobiewaldeck7105 4 года назад +1

    Hi Anders. Thank you for the video and introducing me to Regex. I'm not great with it yet but it is very useful, even in other applications like Excel and VBA.

    • @andersjensenorg
      @andersjensenorg  4 года назад

      Hey Tobie. Thanks for you comment 😊 Regex is a must as an RPA developer (alongside Excel and vba light as well) - I like it a lot. You can check this video out as well, where we use it to extract structured data, ruclips.net/video/uCdBC2pXPyY/видео.html Kind regards, Anders

  • @manjeshjk
    @manjeshjk 3 года назад +1

    Hello Anders,
    Good Day.
    I have a use case which is very similar to this, however there are no page numbers so how do you split it page wise.

    • @andersjensenorg
      @andersjensenorg  3 года назад

      Hey my friend. Like this: ruclips.net/video/hvKAjJhi4zI/видео.html 🙂 Have a great day. Kind regards, Anders

  • @AkulSamartha
    @AkulSamartha 4 года назад +1

    Amazing video Anders. I like your simple explaination very much.

    • @andersjensenorg
      @andersjensenorg  4 года назад

      Hey Ravi. Thank you 🤩😊👍 Let me know, if you have questions here or in the future. Kind regards, Anders

  • @pederderaltmarker6120
    @pederderaltmarker6120 4 года назад +1

    Andres give me/us more of this stuff. Great Videos... Great use cases... Great explanations... Greatings from Deutschland :)

    • @andersjensenorg
      @andersjensenorg  4 года назад +1

      Hey Peder. Vielen dank! 🤩🙂 And thanks for letting me know. Kind regards, Anders

  • @plasaferstone3374
    @plasaferstone3374 4 года назад +1

    Hi Anders! in my case i have pdf which is 149 Pages. I need the split this pdf into 4 parts. In this example 4 Parts means 4 Sessions. 1st session is from page 1 to 30, 2nd session is from 31 to 64 and vice versa. The pattern in each part is like, which is mentioned in every session, as "Session - 1" "Session - 2"...etc. Now i have to split the pdf, not the Session - 1 alone, entire session 1 up to "Session - 2 " ie 30 Pages and for all session. Can you give some guidance

    • @andersjensenorg
      @andersjensenorg  4 года назад

      If I understand you right, you want to split it into 4 parts (Session 1, Session 2, Session 3 and Session 4) right? We will introduce a session counter of the type integer. We define the pattern as "Session " + (intCounter + 1).ToString. Do remember to also add one to that at the end of each loop. Does that make sense? Kind regards, Anders

    • @plasaferstone3374
      @plasaferstone3374 4 года назад

      @@andersjensenorg Hey Anders this only split in to 4 pages. Real Requirement is split into 4 parts each part have some pages.Total Page is 159. Name of the each part is Session 1, Session 2, Session 3 and Session 4. Each part have around 30 to 40 Pages

    • @plasaferstone3374
      @plasaferstone3374 4 года назад

      For more understandable, Pdf Starts with the page name Session - 1 it have 39 Pages. Only the start page have name as "Session - 1". After 39 pages only I have next name ie "Session - 2". this is similarly for all 4 Sessions

    • @plasaferstone3374
      @plasaferstone3374 4 года назад

      or can i find the page number where the pattern is found

  • @AbhishekSingh-pr8ol
    @AbhishekSingh-pr8ol 4 года назад +1

    Hi Ander I've been following you since months and I love your videos ♥️. I have a request for an automation video over MAINFRAME application and it's certain tricky scenarios. Regardless, keep up the great work brother💪

    • @andersjensenorg
      @andersjensenorg  4 года назад +1

      Hey Abhishek. Thank you 👍😍 I have no knowledge in Mainframe, but I have a world class dad, that is one of the sharpest minds in that regard. If I can convince him, that he and I should do a collaboration together, I can not get such a video done fast enough. A dream to have the chance to work with my dad (even though it will just be for a couple of hours). Kind regards, Anders

    • @andersjensenorg
      @andersjensenorg  3 года назад

      Hey Abhishey. I know it's late, but check this: ruclips.net/video/WUk47sgOlYo/видео.html On top of that I will have an introduction in a couple of weeks. Kind regards, Anders

  • @miniscreen_Tales
    @miniscreen_Tales Год назад +1

    Hi Anders can you please share multiple invoice pdf to download or can you tell where we can download invoice for practice.

    • @andersjensenorg
      @andersjensenorg  Год назад

      Thanks for writing 😊 I'm getting more than 50 messages daily. While I read all of them, I can’t reply to everyone 😔 But I’ve created an RPA/Automation community where we’re 6000+ RPA Developers helping each other with solutions and our careers. Here’s the video on how to join (the invitation link is in the video description): ruclips.net/video/xWFz-S96XGo/видео.html Kind regards, Anders

  • @sebastianmenesesmunera1782
    @sebastianmenesesmunera1782 2 года назад +1

    this saved my life, thanks a lot

    • @andersjensenorg
      @andersjensenorg  2 года назад

      You're very welcome, SEBASTIAN MENESES MUNERA - your support helps me a lot 😍

  • @chethanchethu9197
    @chethanchethu9197 2 года назад +1

    Hi anders
    I have querie
    1. We have to split the pdf and in each pdf we have fetch the customer number.
    2. Same customer number we have to put it in browse or browser app and we have to attach respective pdf into that
    browser attachment
    Is it possible....?

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey chethan chethu Thanks for writing. I'm getting more than 50 questions/comments every day and having difficulty answering everyone (I try my best). I've created my UiPath Groups, where we all can post and solve problems or hang out around our favorite tool, UiPath. So you're very welcome. Get the addresses here: ruclips.net/video/C6xmGfEL07I/видео.html Have a great day. Kind regards, Anders

  • @OrlandoSalas
    @OrlandoSalas 4 года назад +1

    hello thank you very much for your videos they help me a lot, in this case I have a question, since I could not get the variable type IEnumerable when you created the output variable "ienMatches" in the output of the Match activity thanks.

    • @andersjensenorg
      @andersjensenorg  4 года назад +1

      Hey Orlando. Thank you 😊 Can you press ctrl+k before typing in the variable field? Then you will be able to see it afterwards in the variable manager. Kind regrads, Anders

  • @juniepresa123
    @juniepresa123 3 года назад +1

    Hi Anders, This is very helpful for the invoice extraction I am working on however I still need help. I have a 1 pdf invoice with multiple invoices and each invoice can have more than 1 page. Can the uipath form extractor handle this? I tried but I am only to get the pdf details of the 1st page. Thank you so much.

    • @andersjensenorg
      @andersjensenorg  3 года назад +1

      Hey Celso. Thank you very much 🙂 Check this: ruclips.net/video/INnbGPF5MwE/видео.html and do let me know, if you have any questions. Kind regards, Anders

    • @juniepresa123
      @juniepresa123 3 года назад +1

      Thank you very much

  • @BsBlacksheep12
    @BsBlacksheep12 3 года назад +2

    Hi Anderson, this was great! Can you assist in how to do pdf splits into batches? i.e if 1000 pages in PDF, but each batch with random amounts of page (has a "Front page" and an "end page"), so that the bot splits according to each new "front page" till "last page"

    • @andersjensenorg
      @andersjensenorg  3 года назад

      Hey Olivier. Thank you :) Check this: ruclips.net/video/INnbGPF5MwE/видео.html Kind regards, Anders

  • @bouxesas2046
    @bouxesas2046 2 года назад +1

    That was really helpful. Thank you!

    • @andersjensenorg
      @andersjensenorg  2 года назад +1

      You're very welcome, Bouxesas - your support helps me a lot 😍

  • @snehareddy4801
    @snehareddy4801 4 года назад +1

    Thank you... It helped me alot.. Please do a video on Document Understanding

    • @andersjensenorg
      @andersjensenorg  4 года назад

      Hey Sneha. Thank you very much 😊 I've already did such a video as well: ruclips.net/video/cp1hbChzUQ4/видео.html or do you mean any particular subject? Kind regards, Anders

  • @heavysummer
    @heavysummer 2 года назад +1

    Super helpful Anders! Thanks :)

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey hey 😊 Thanks, if your pdf's got a variable page length: ruclips.net/video/INnbGPF5MwE/видео.html Have a great day. Kind regards, Anders

  • @florinanghius8986
    @florinanghius8986 2 года назад +1

    Great and Helpful video ❤

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey Florin Anghius. Thanks a lot 😊 Have a great day. Kind regards, Anders

  • @prabhuteja7621
    @prabhuteja7621 3 года назад +1

    This helped me a lot Jensen

    • @andersjensenorg
      @andersjensenorg  2 года назад

      You're very welcome, Prabhu Teja - your support helps me a lot 😍

  • @syahrulsupian9853
    @syahrulsupian9853 2 года назад +1

    amazing content, its very helpfull

    • @andersjensenorg
      @andersjensenorg  2 года назад +1

      Hey Syahrul Supian. Thanks a lot 😊 Have a great day. Kind regards, Anders

  • @kesava90
    @kesava90 3 года назад

    in your pdf all pages have page 1/1 only what to i have page 1 of 4, page 2 of 4 .....? and also what to do in page 1 we have so many page1 keywords so how matches find only page1 keyword ? ?

    • @andersjensenorg
      @andersjensenorg  3 года назад

      Great question. Then you check this: ruclips.net/video/INnbGPF5MwE/видео.html Let me know, if that helps? 😊 kind regegards, Anders

  • @Hexenmiester
    @Hexenmiester 3 года назад

    Super useful, glad I found it

  • @dipensoni7667
    @dipensoni7667 4 года назад +1

    hi Jensen, thanks for uploading

    • @andersjensenorg
      @andersjensenorg  4 года назад

      Hey Dipen. Thank you very much for letting me know 😊 Kind regards, Anders

  • @lelolalelola3749
    @lelolalelola3749 2 года назад

    Hi Anders, what if invoices span multiple pages?

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey my friend: ruclips.net/video/INnbGPF5MwE/видео.html 🙂

  • @lavakumarsalagala8312
    @lavakumarsalagala8312 Год назад

    I have with different pdf and different branches in one single pdf how can we differentiate among all them can you help??

    • @andersjensenorg
      @andersjensenorg  Год назад +1

      Thanks for writing 😊 I'm getting more than 50 messages daily. While I read all of them, I can’t reply to everyone 😔 But I’ve created an RPA/Automation community where we’re 9000+ RPA Developers helping each other with solutions and our careers. Here’s the video on how to join (the invitation link is in the video description): ruclips.net/video/xWFz-S96XGo/видео.html Kind regards, Anders

  • @uipath6robot962
    @uipath6robot962 2 года назад +1

    Nice video, when i i use regex match to display count its throwing error.

    • @andersjensenorg
      @andersjensenorg  Год назад

      Thanks for writing 😊 I'm getting more than 50 messages daily. While I read all of them, I can’t reply to everyone 😔 But I’ve created an RPA/Automation community where we’re 5800+ RPA Developers helping each other with solutions and our careers. Here’s the video on how to join (the invitation link is in the video description): ruclips.net/video/xWFz-S96XGo/видео.html Kind regards, Anders

  • @suhasmdeepu
    @suhasmdeepu 3 года назад +1

    It was help full thanks!!

    • @andersjensenorg
      @andersjensenorg  2 года назад +1

      You're very welcome, Suhas Mariyappa - your support helps me a lot 😍

  • @georgesamuels448
    @georgesamuels448 3 года назад

    Good video you've helped me! thanks!

    • @andersjensenorg
      @andersjensenorg  2 года назад +1

      You're very welcome, George Samuels - your support helps me a lot 😍

  • @arjunreddy0
    @arjunreddy0 4 года назад +1

    Hai Jensen
    Can you make a video on how to extract data from mailbody to excel sheet.

    • @andersjensenorg
      @andersjensenorg  4 года назад

      Hey Arjun. Can you use this? ruclips.net/video/zy_pjivxDGM/видео.html 😊 Kind regards, Anders

  • @mubashirshaikh2538
    @mubashirshaikh2538 3 года назад

    Hi Anders, Pls share sample input files that used in Tutorials. It will help us to do practice.

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey Mubashir Shaikh
      Thanks for writing. I'm getting more than 40 questions/comments every day and having difficulty answering everyone (I try my best).
      I've created my UiPath Groups, where we all can post and solve problems or hang out around our favorite tool, UiPath. So you're very welcome. Get the addresses here: ruclips.net/video/C6xmGfEL07I/видео.html
      Have a great day.
      Kind regards,
      Anders

  • @krishanbandara198
    @krishanbandara198 4 года назад

    Thank you very much for the tutorial, well can you also show how to copy multiple rows from one pdf files and save to excel row by row

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey Krishan Bandara
      Thanks for writing. I'm getting more than 40 questions/comments every day and having difficulty answering everyone (I try my best).
      I've created my UiPath Groups, where we all can post and solve problems or hang out around our favorite tool, UiPath. So you're very welcome. Get the addresses here: ruclips.net/video/C6xmGfEL07I/видео.html
      Have a great day.
      Kind regards,
      Anders

  • @mariraja6488
    @mariraja6488 2 года назад

    Is it possible to split using keyword..if yes, kindly provide the steps

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey Mari Raja
      Thanks for writing. I'm getting more than 40 questions/comments every day and having difficulty answering everyone (I try my best).
      I've created my UiPath Groups, where we all can post and solve problems or hang out around our favorite tool, UiPath. So you're very welcome. Get the addresses here: ruclips.net/video/C6xmGfEL07I/видео.html
      Have a great day.
      Kind regards,
      Anders

  • @danielsmobile8154
    @danielsmobile8154 4 года назад

    Hello Anders,
    thanks a lot for this great video. It worked for me directly, great! Maybe you can help me here, I just want to export the page that contains the word " blablabla". I do not know how to do that.
    Best regards Daniel

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey Daniels Mobile
      Thanks for writing. I'm getting more than 40 questions/comments every day and having difficulty answering everyone (I try my best).
      I've created my UiPath Groups, where we all can post and solve problems or hang out around our favorite tool, UiPath. So you're very welcome. Get the addresses here: ruclips.net/video/C6xmGfEL07I/видео.html
      Have a great day.
      Kind regards,
      Anders

  • @danielsmobile8154
    @danielsmobile8154 4 года назад +1

    Thanks Anders TOP Video

    • @andersjensenorg
      @andersjensenorg  2 года назад

      You're very welcome, Daniels Mobile - your support helps me a lot 😍

  • @kumshan1407
    @kumshan1407 4 года назад

    Hi Thank you very much for posting such a wonderful video. In this video, the output file is split it into pages. For eg Invoice A_1,Invoice A_2 and Invoice A_3. Can it be done basis the invoice number. Invoice number will be unique in every page. This will be really really useful. It will be helpful for the user to track the pdf by invoice number instead of page number. Can we split pdf and rename it by invoice number? Is it possible in uipath?

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey Kum Shan
      Thanks for writing. I'm getting more than 40 questions/comments every day and having difficulty answering everyone (I try my best).
      I've created my UiPath Groups, where we all can post and solve problems or hang out around our favorite tool, UiPath. So you're very welcome. Get the addresses here: ruclips.net/video/C6xmGfEL07I/видео.html
      Have a great day.
      Kind regards,
      Anders

  • @plasaferstone3374
    @plasaferstone3374 4 года назад +1

    Your great work continues!!!!Anders

    • @andersjensenorg
      @andersjensenorg  4 года назад

      Hey Plasafer, thanks for the kinds words 😊

  • @mubashirshaikh2538
    @mubashirshaikh2538 3 года назад

    What if pdf doesn't have page number or unique value?

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey Mubashir Shaikh
      Thanks for writing. I'm getting more than 40 questions/comments every day and having difficulty answering everyone (I try my best).
      I've created my UiPath Groups, where we all can post and solve problems or hang out around our favorite tool, UiPath. So you're very welcome. Get the addresses here: ruclips.net/video/C6xmGfEL07I/видео.html
      Have a great day.
      Kind regards,
      Anders

  • @MrVasantharao
    @MrVasantharao 3 года назад

    How to handle excel alert in uipath please make video bro 🙏

    • @andersjensenorg
      @andersjensenorg  2 года назад

      Hey Vasanth life style
      Thanks for writing. I'm getting more than 40 questions/comments every day and having difficulty answering everyone (I try my best).
      I've created my UiPath Groups, where we all can post and solve problems or hang out around our favorite tool, UiPath. So you're very welcome. Get the addresses here: ruclips.net/video/C6xmGfEL07I/видео.html
      Have a great day.
      Kind regards,
      Anders

  • @kareemalaridi8791
    @kareemalaridi8791 3 года назад

    Hello, can you please link the PDF?

    • @andersjensenorg
      @andersjensenorg  3 года назад

      Hey Kareem. I don't have it :( But you can easily create it in Word. Kind regards, Anders

  • @srinivasankrishnan177
    @srinivasankrishnan177 3 года назад +1

    Thanks

  • @ArtOnWheels91
    @ArtOnWheels91 4 года назад

    So helfull/ Thanks!!!

    • @andersjensenorg
      @andersjensenorg  4 года назад

      Hey Jairo. I am happy, that you could use the guide 😊 Kind regards, Anders

  • @jaggukiran08
    @jaggukiran08 4 года назад

    Thank You

    • @andersjensenorg
      @andersjensenorg  2 года назад

      You're very welcome, Jagannath Patil - your support helps me a lot 😍

  • @SriMuthuMalaiCom
    @SriMuthuMalaiCom 19 дней назад

    Sir how to download pdf sir

    • @andersjensenorg
      @andersjensenorg  8 дней назад

      Thanks for writing 😊 I'm getting more than 50 messages daily. While I read all of them, I can’t reply to everyone 😔 But I’ve created an RPA/Automation community where we’re 13,000+ RPA Developers helping each other with solutions and our careers. Here’s the video on how to join (the invitation link is in the video description): ruclips.net/video/xWFz-S96XGo/видео.html Kind regards, Anders

  • @dipensoni7667
    @dipensoni7667 4 года назад

    sir, can I have your mail id I have some use cases where i need your help

    • @andersjensenorg
      @andersjensenorg  4 года назад

      Hey Dipen. I try to solve questions where it benefits the most (either here as questions to the videos or at my Facebook page). I don't have time for entire workflows 😔 Kind regards, Anders