I want do for loop on the pdf page. The range which is “2-4”
If your basic requirement is to loop through PDF pages.
- You can simply use Get PDF Page Count activity to get the total no. of pages in the PDF. put that in PageCount variable.
- Create new variable with name Counter and set Counter = 0.
- Use do while loop to loop through pages in pdf. Condition : while Counter <> PageCount
- Increase Counter by 1. i.e. Counter = Counter+1