
Announcements
Hi all,
Need some guidance. When we use Launch, like this : Launch("https://www.somewebsite.com?keyid=q", {q: variableInput}, LaunchTarget.Replace)
The intention is there is a variable, in my example is named : variableInput, and I want to add it at the end of URL, how am I going to achieve that ?
By using my example like above, unfortunately it is not working. the URL will launch but with variable q is not replaced by what inside of variableInput value.
Please advice,
Thanks
@Anonymous
Consider changing your formula to the following:
Launch("https://www.somewebsite.com?keyid=q" & variableInput, LaunchTarget.Replace)
That should give you what you need.
I hope this is helpful for you.