Having some problems with lookup() function when trying to build a multi-language supported App. I have a data source that has 3 columns, Title, English, and French. When I change the user language from French to English or vice versa I am seeing the desired results. See examples below.
The following code will return just "English" or "French", into the text label.
LookUp(
Table2,
Text(Dropdown1.Selected.Value) = Text(Column1),
varUserLanguage
)
Where this code, returns the proper message or title text from the datasource
LookUp(
Table2,
Text(Dropdown1.Selected.Value) = Text(Column1),
English
)
Yes, I have tried wrapping the varUSerLanguage in Text().
I am sure this is a super simple thing I am not seeing.