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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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

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