Process Multiple Pages in PDF

Hi Team,

I have a PDF file containing 15 pages, and I need to extract different values from each page individually.

How can I read and process the PDF page by page instead of processing the entire document at once? I want to extract and handle the data sequentially, one page after another.

Thanks

Hi @Qadar

1.Use Get PDF Page count to get the total No.Of Pages.
2.Take a counter Var Init_Count=1
3.Pass condition in while loop init_Count<=Page
4.Pass the Counter var init_Count in the Range Property of Read PDF

Try below flow

:white_check_mark:Export PDF pages as images
:white_check_mark: Loop through each page sequentially
:white_check_mark: Use OCR to read text from each image
:white_check_mark: Capture extracted text per page
:white_check_mark: Apply Regex to extract required values
:white_check_mark: Repeat process for all pages