Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

MsgBox is not working in script

Hi Guys,

I am trying to using MsgBox in my script to popup message but it is not working.

IF $(vFile)=12 THEN

MsgBox ("12 Months Data has been already loaded by other user and available for all");

ELSE

MsgBox ("Reload the data");

END IF;

Could you please correct it

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

The syntax is different:

load
MsgBox ('12 Months Data has been already loaded by other user and available for all')
autogenerate 1;


load
MsgBox ('Reload the data')
autogenerate 1;

View solution in original post

2 Replies
Anonymous
Not applicable
Author

The syntax is different:

load
MsgBox ('12 Months Data has been already loaded by other user and available for all')
autogenerate 1;


load
MsgBox ('Reload the data')
autogenerate 1;

Not applicable
Author

Thanks Michael. It is working now