Fetch field information from one form to another.
Another fetch question...
I have 2 forms, one is CUSTOMET form, the other is a SUBSCRIPTION form.
I use an openurl script to open the SUBSCRIPTION form when the form CUSTOMER form is sumitted, fetching at the same time the customer name in the SUBSCRIPTION form in a lookup fileld. That works fine :
But I want also to fetch the email of the customer in another field. I use the following script in the SUBSCRIPTION form:
Var1 = Client[ID == input.Nom_Client];
input.Courriel_Client = Var1.Courriel_Client;
But that doesn't work, I get the following error (screen shot):
Anybody can help me ?
Sylvain