When you select a data item as the Parameter with a Target, it will add ?target=value to the end of the URL. For example, I selected this:
And the following was added to the end of my URL when I passed the name Louise.
?qual=Louise
Additional parameters with a target will be added as &target=value. So, if I add Age as a second parameter, this is added to the end of my URL.
?qual=Louise&age=15
Your URL will need to include everything it needs so that adding ?target=value (and any additional parameters) will be sufficient to get the results that you want.
... View more