Skip to main content

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
sifatnabil
Specialist

Global variable in VBScript/VBA

Hi,

I'm trying to declare a global variable outside of any functions/subs but getting an "Expected end of statement" error. Any ideas?

Expected end of statement.PNG

1 Solution

Accepted Solutions
m_woolf
Master II

Try just:  Public vsubject

View solution in original post

2 Replies
m_woolf
Master II

Try just:  Public vsubject

marcus_sommer

A variable-declaration in VBScript is without as DataType only:

Public vsubject

- Marcus