Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
Locked
0

How do I reverse the page order of a scanned document?

New Here ,
Oct 27, 2016 Oct 27, 2016

I have scanned a large volume of correspondence, in date order, starting with the oldest and finishing with the newest date. However, I need the finished file to have the newest dated correspondence at the beginning, instead of at the end. Is there an easy way to reverse the page order without invoking any scripts? I work in a large organization where every little change needs to be approved by an administrator.

I was thinking of doing the following -- extract every page as a separate document, then recombine them into one document with the order sorted whichever would product the result.

Thanks!

TOPICS
Scan documents and OCR
141.2K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
2 ACCEPTED SOLUTIONS
Community Expert ,
Oct 28, 2016 Oct 28, 2016

You can print to "Adobe PDF" with reverse pages.

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Dec 04, 2020 Dec 04, 2020

One-click solution using this free tool I've created:

https://www.try67.com/tool/acrobat-reverse-page-order-free

 

View solution in original post

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 05, 2024 Jul 05, 2024

Thank you you saved my life. But it took me forever to realize that the text file is the instructions. I wish you named ReadMe or something. But thanks, you are a life saver!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 22, 2024 Aug 22, 2024

Thanks a million man, awesome script and thank you for making the installation process painless!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 02, 2025 Jan 02, 2025

fantastc, some clever people around! thanks

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
May 14, 2025 May 14, 2025
LATEST

genius! works well

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Feb 08, 2021 Feb 08, 2021

Hi I just figured thus out - there is a simple way:
Open the file in Acrobat
Extract all pages to a new folder (you get them all sapareted)
Then Open the Merge PDF Files tool in acrobat and choose all the saparated pages

Select them all and with control+click open a menu - and there it is: Reverse Files. and Combine.

Your done!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 23, 2023 Jan 23, 2023

Thank you so much, I found this thread and I could not figure it out for the life of me. You are seriously a savior!! thank you!

 

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 05, 2024 Jul 05, 2024
 

control+click 

 click where? right click or left click and on what?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Explorer ,
Jul 05, 2024 Jul 05, 2024
 

control+click 

 
click where? right click or left click?

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jul 21, 2024 Jul 21, 2024

For the sake of future seekers: I had to switch from grid view to list view in Combine Files, then sort options appeared in the context menu when right-clicking on a list entry.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Jan 23, 2024 Jan 23, 2024

Sample JavaScript to reverse pages:

// Reverse Page Order
// This script reverses the page order of this document
var numPages = this.numPages; // Get the number of pages
for (var i = numPages - 1; i > 0; i--) { // Loop from the last page location to the second
    this.movePage(0, i); // Move the current first page to its correct location
}

 I add it as a new custom command to the Action Wizard on my Acrobat Pro (though I don't think the Action Wizard is supported yet on the new Acrobat interface)

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Beginner ,
Mar 03, 2024 Mar 03, 2024

If you're on a Mac, this solution worked for me and took about 5 seconds. 

https://discussions.apple.com/thread/255491972?sortBy=best

Reversing PDF pages on Preview

Wanted to post the solution. But I wasn't allowed to reply in an earlier thread

1) Open the PDF in Mac Preview. Press Command + P (Print)

2) Scroll down to "Paper Handling" and expand the drop down

3) Choose sheet order as "reverse"

4) Then click on the PDF button on the bottom left

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Aug 13, 2024 Aug 13, 2024

THANK YOU. Saved me so much time!

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Jan 03, 2025 Jan 03, 2025

This is awesome. Multiple cool ways to do it.

  1. The free tool from
  2. Printing in reverse order
  3. Reverse order JS from @zeigler 
  4. Extract and reverse order merge from Rami

 

Tx

mj

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Aug 23, 2024 Aug 23, 2024

Yup, this should be just a single command imho.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines