Renamed Worksheet
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
26-05-16 04:34 PM
Hi there,
I'm trying to rename a worksheet but i have some errors.
Could you help me please ?
'Here in VBA
'Sheets(worksheetName).Select
'Sheets(worksheetName).Name = newName
'ws.Name = newName
'What i put on BluePrism
'First Try
Dim ws As Object
ws = GetWorkSheet(handle, workbookName, worksheetName)
ws.Select
ws.set(handle, workbookName, newName)
'Error : Internal : Could not execute code stage because exception thrown by code stage: Public member 'set' on type 'Worksheet' not found.
'Second try - Should be worked ? It talks about wrong worksheet name but i have checked
Dim ws As Object
ws = GetWorkSheet(handle, workbookName, worksheetName)
ws.Select
ws.Name = newName
'Internal : Could not execute code stage because exception thrown by code stage: Vous avez tapé un nom de feuille ou de graphique non valide. Vérifiez les points suivants :
ۢ Le nom ne d̩passe pas 31 caract̬res.
ۢ Le nom ne contient aucun des caract̬res suivants : \ / ? * [ ou ]
€¢ Le champ du nom n'est pas vide.
Thanks,
Regards,
KG
3 REPLIES 3
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
26-05-16 04:49 PM
Hi,
Based on the error you are detailing, the experience I have is you have one of the following problems:
-Tab names for worksheets have a limited character length or 31 - Make sure the input you are using doesn't exceed this. Keep in mind spaces are classed as a character in tab names.
-Tab name are highly restricted for special characters - Make sure you are using simple text Ampersand are allowed but I would using only 1 and the rest basic chars.
Thanks,
James
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
26-05-16 05:31 PM
Hi James,
Thank you for your reply, i have ever checked these details.
worksheetName = ""monClasseur""
new worksheetName = ""monClasseurRenamed""
With regards,
KG
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
30-05-16 07:42 PM
Problem solved for me.
Here the code :
Dim ws As Object
ws = GetWorkSheet(handle, workbookName, worksheetName)
ws.Select
ws.Name = newName
