Lookup field variable type mismatch?
Hi all,
I'm receiving the following error with one of my forms:
The line of code it's unhappy with is: input.Student = Blah.Name;
where Blah is declared earlier: Blah = Member_Ident_Form[ID == input.Student];
upon doing some digging, I believe that this error is being caused by a type mismatch that I can't reconcile or do anything about because the type is being defined for me. Pathway is:
Student is defined as a Lookup from another table, "Name" from the Member_Ident_Form.
Name in the Member_Ident_Form is listed as type Text:
but Student is listed as type Number
How can I address this?