How can I split a pdf containing multiples pages into several files? I want to split each 2 pages = 1 PDF document

was already shown here

myRanges | List(of String) =

Enumerable.Range(1,myPageCount).Chunk(mySegment).Select(Function (x) String.Join("-", x)).ToList()

we used as explained:
mySegment | Int32 = 2
myPageCount | Int32 = the output from the get pdf page count activity

Sorry I m little bit new with this. May I ask you to let me know what Did i do wrong here ?

Thanks in advance for the help

you are mixing up different approaches. This option:

is using a for each

In general the flow looks like this:

Variables:

Flow:

We assume that the essentials are known. Otherwise refer to

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.