Objective: Button transitions to a new screen and updates a DropDown column (Allowed Values) with one of the available options. I have three buttons on the start screen that have a corresponding Option in the target DropDown Column on another screen.
Below is screen one, with the button that is to navigate to another screen and update a specific dropdown on that screen. The OnSelect Properties are:
NewForm(NCAAccordianForm); Navigate(ScreenNCAAccordian,ScreenTransition.Fade, {SelectedValue: "Individual Tax"})

Below is Screen two with the dropdown that is to be updated. The screen OnVisible properties of the screen is:
UpdateContext({ClientTypeValue: Param("SelectedValue")})

The Default value of the Client Type column is: ClientTypeValue. The value remains blank even though the contextual variable was pushed through to the new screen.
Is this the wrong approach?
