Delete Multiple Sheets in Numbers
How can I delete multiple sheets at once from Numbers?
MacBook Pro 15", macOS 10.14
How can I delete multiple sheets at once from Numbers?
MacBook Pro 15", macOS 10.14
you cannot. You have to do it one at a time.
you can post feedback to Apple using the Numbers menu item "Numbers > Provide Numbers Feedback"
if you want to keep all but one, you can select the one you want, then copy using the contextual menu for that sheet, then create a new document and paste the sheet you copied.
you cannot. You have to do it one at a time.
you can post feedback to Apple using the Numbers menu item "Numbers > Provide Numbers Feedback"
if you want to keep all but one, you can select the one you want, then copy using the contextual menu for that sheet, then create a new document and paste the sheet you copied.
Easily done with a short script.
Be sure to make a backup of your document first.
SG
set sheetsToDelete to {"Sheet 1", "Sheet 2", "Sheet 5"}
tell application "Numbers" to tell front document
try
repeat with s in sheetsToDelete
delete sheet s
end repeat
end try
end tell
Delete Multiple Sheets in Numbers