Is it possible to modify the "visible" test of a form in an edit field?
My data has a set of usernames which are comprised of first names and last names such as: "lastname-FirstInitial"
I want the end users to be able to see the first name and last name of an individual that can be grabbed from a lookup as such:
LookUp(CachedContact, Title = DataCardValue8.Selected.Value, firstname & " " & lastname)
For the choices in the drop-down while the actual backend that is being changed is actually the username. Is this possible?
If this is still confusing I want the end user to see:
"FirstName LastName" that is grabbed from the lookup above as the selectable options in the dropdown, but I want the actual value that's being changed to be the username that corresponds to these individuals.