Dear Zoho Creator team,
I am using a variable to fetch data from a source form via a lookup field, and have it appear On User Input in another field (see script example below).
the thing is, i've been using the same method in another app and it works fine - somehow, what works in one app doesn't in the other...
script example:
TempName = Employees[ID_Number = input.ID_num].Employee_Name;
input.Emp_Name = TempName;
/*Where Employees is the source form, ID_Number is the source ID field, ID_num is the target ID field, Employee_Name is the source Name field, and Emp_Name is the target Name field.
thanks,
Anat