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: 
sifatnabil
Specialist
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

Labels (1)
1 Solution

Accepted Solutions
m_woolf
Master II
Master II

Try just:  Public vsubject

View solution in original post

2 Replies
m_woolf
Master II
Master II

Try just:  Public vsubject

marcus_sommer

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

Public vsubject

- Marcus