-
I'm trying to write a command that closes all the sheets except the first one. Here's my attempt:
This fails because How do I get the first sheet that was opened? |
Beta Was this translation helpful? Give feedback.
Answered by
saulpw
Sep 3, 2024
Replies: 1 comment 1 reply
-
That's probably |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
cool-RR
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
That's probably
vd.sheets[-1]
, orvd.allSheets[0]
.