Create a CSV string from report and paste it on another form
After a search in a report, I want all email adresses of the selected records to be in a CSV string and pasted in another form using OpenUrl.
The only bit I am missing is creating that CSV string. It might even already be made by a system function since we can export CSV files after selection of records.
I tried this but it pasted only one email adress, the first of the selection in fact.
Liste = Collection(input.Courriel_Client_ABO);
openUrl("#Form:Courriels_groupes?Destinataires_courriel=" + Liste,"new window");
Sylvain