Hi,
I'm trying to autofill a form based on another form using fetch records. When the user inputs a name, I want it to auto-fill an address. I've put this under "on user input" for the account name variable.
When I use the code below, it gives no errors. However it doesn't seem to do anything. It doesn't populate the address field in the form, and does not add the data to the table on form submit. What am I doing wrong?
TableLink = Account_Information_Form [ Account_Name == (input.Account_Name_from_Order).toString()];
input.Address = TableLink.Address;
Thank you.
Edit: I think my problem is the Account Name fields are not matching up. The Account_Name field is a string. The Account_Name_from_order field is a drop down based on the field from the other form. The value of that field is not actually a text of the account name, but a system generated number (example
1431561000000012003). Is there anyway I can get the text value and not the number?