I'm running into an issue when I am editing a record from the gallery. To give a bit of background, is that the customer record pulls the "Area" from a table within SQL where each Area is represented by a number (i.e. United States = 3, Canada = 1, United Kingdom = 10)
| AreaID | Area |
| 1 | Canada |
| 3 | United States |
| 10 | United Kingdom |

Under Update under the card, I have CountryAreaField.Text which is where it is throwing the error at
Under Default I have the following code below
LookUp(collectCountryListView,DefaultCountry = DropdownDefaultCountry.SelectedText.Value,Area)/*LookUp('[dbo].[vw_CountryList]',DefaultCountry = DropdownDefaultCountry.SelectedText.Value,Area)*/
I've tried changing it to Value(CountryAreaField.Text) though that doesn't seem to do anything. Any helpful suggestions would be greatly appreciated.
Thanks