Having problem with automatically populate look up text field
Based on another post I read, here is what I have so far:
in "On User Input" I have:
if (input.Class != "" )
{ myClass = Class_List[Name == input.Class];
input.Price = myClass.Price;
}
When I save the script I get the following error:
Error at line:0
Form Class_List does not exist in this application
How do I get a lookup text field to populate automatically?
Thanks