I've created a dropdown that displays LastName, FirstName from a collection queried from a user table. Within that table I have a GUID that I want to use as an identifier for another query later.
DropDown1
Items: Concatenate(UsersCol.LastName,", ",UsersCol.FirstName);
How do I construct the OnChange for the dropdown so that it gets the GUID and when I make a selection?