Hi.
I am trying to create a dropdown that contains a list of items. The user is supposed to select which item belongs to them, and once they do, they will navigate to the next screen with that item selected.
To achieve this, I am setting a global variable called varAffiliation in the OnChange of the ComboBox1:
Set(
varAffiliation,
ComboBox1.Selected.Name
);
Navigate(
'SIB MD Main Screen',
ScreenTransition.Cover
);
When it navigates over to the next screen, the global variable varAffiliation is listed as blank. Can someone let me know what I am doing wrong here?