Can you tell me if this is achievable, so far I haven't cracked it but I feel I am close.
I have an app with a gallery which has three sets of radio buttons, each radio button set defaults to the All value on the app start. I'd like to be able to pass a parameter to the app in the URL (sorted that bit) but I then want the gallery to be filtered based on what the parameter value is. I was thinking it would be possible to set the selected value of my radiobuttonset based on the parameter value but this doesn't appear to work.
I have the following set on app start - If(Param("Item") = "E3 Review", radiobuttonset .SelectedText.Value = "E3 Review", radiobuttonset .SelectedText.Value = "All")
The above doesn't work. So the question is, is this even possible and if so where am I going wrong?
TIA