Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Add variables to 'Open Url'

Hello to all,

at the moment, I'm trying to open an URL by combining to variables. These variables (together) will open a webpage according to the variables. I use the action 'Open url' and the definition (in the url field) is:

=[atonapiaddress] + [DOC_ID]

This isn't working. What am I doing wrong? Is it the way I'm adding the variables?



Kind regards,


Martjin te Molder

1 Solution

Accepted Solutions
Miguel_Angel_Baeyens

Martjin,

If you want to concatenate both variables, you must use "&" operator instead the "+" you are using now.

=[atonapiaddress] & [DOC_ID]


Hope that helps.

View solution in original post

2 Replies
Miguel_Angel_Baeyens

Martjin,

If you want to concatenate both variables, you must use "&" operator instead the "+" you are using now.

=[atonapiaddress] & [DOC_ID]


Hope that helps.

Not applicable
Author

Thank you so much! This solves my problem.

However, I've got another question. Is it possible to create a wait() or sleep() function between two open_url actions? And (secondly) is it possible to automatically give permission for the open_url action (so no pop-up with the yes/no dialog box)?