Hi
I have two forms (A and B) connected with a bidirectional lookup. I want to copy records from one to another including the value from another lookup (from form Country) which they both include. So far the function looks like this:
- void copyRecord(string First_Name, string Last_Name, string Email, string Profession)
- {
- insert into New_Profile
- [
- Added_User = zoho.loginuser
- First_Name = input.First_Name
- Surname = input.Last_Name
- Email = input.Email
- Profession = input.Profession
- ]
- }
How do I include the Country if it's a lookup field?
Thanks