"Error modifying the page
Encountered "[" at line 84"
while trying to fetch data from another form. here's the code -
input.currency_from_app = app6.form1[Currency==input.Currency].Value;
i can't use a lookup field because it requires the user to choose an option (it will be only one option, but still the user will need to mark it). i also tried this code-
if (input.Currency=="Euro")
{
input.currency_from_app = app6.form1[Currency=="Euro"].Value;
}
but still - the same error
how could i fix this?
thanks