Bug
Bug ID Number | BUG-000147574 |
---|---|
Submitted | March 14, 2022 |
Last Modified | June 5, 2024 |
Applies to | ArcGIS Pro |
Version found | 2.8.4 |
Operating System | Windows OS |
Operating System Version | 11.0 64 bit |
Status | Fixed |
Export the page range via ArcPy (Python) instead.
Use the following code to export:
##Export Page Range Map Series to PDF
aprx = arcpy.mp.ArcGISProject("CURRENT")
lyt = aprx.listLayouts()[0]
ms = lyt.mapSeries
start = time.time()
ms.exportToPDF(f"C:\Temp\{lyt.name}.pdf", "RANGE", "1-10", resolution=300)
end = time.time()
print(f"{lyt.name} exported in {end - start} seconds")
print("Done")
Bug ID: BUG-000147574
Software:
Get help from ArcGIS experts
Download the Esri Support App