Rename Worksheet - how? #2296
Answered
by
oleibman
josipWebbite
asked this question in
Q&A
-
Hi, I need to rename default "Worksheet" name to something else. How? |
Beta Was this translation helpful? Give feedback.
Answered by
oleibman
Sep 22, 2021
Replies: 3 comments 3 replies
-
Anyone? |
Beta Was this translation helpful? Give feedback.
0 replies
-
When a new sheet is created, it will have the title $sheet->setTitle('anything'); |
Beta Was this translation helpful? Give feedback.
1 reply
-
After loading the spreadsheet: $sheet = $spreadsheet->getActiveSheet();
$sheet->setTitle('anything'); |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
josipWebbite
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After loading the spreadsheet: