Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Rename Sheet

Hi, I have a macro that I exported all my data to a document qlikview excel, I need help to do that within this macro to rename all the leaves I open this same macro, I hope I can provide the code, and that help me to tell me where to place the code within the macro.

Best Regards Thanks ....

Labels (1)
1 Solution

Accepted Solutions
Clever_Anjos
Support
Support

Try this

set XLSheet = XLDoc.Worksheets("Sheet1") 'sheet to have name changed

XLSheet.Name = "New NAme"

View solution in original post

2 Replies
rustyfishbones
Master II
Master II

you will need to explain what you mean as I dont understand what you want

Regards

Alan

Clever_Anjos
Support
Support

Try this

set XLSheet = XLDoc.Worksheets("Sheet1") 'sheet to have name changed

XLSheet.Name = "New NAme"