I am having difficulty with a form recognising a selected value when opening a pre-existing ticket via URL.
I am not having this issue with the ticket ID via "CurrentItemID" which is due to my App OnStart statement - If(IsBlank(Param("ItemID")),Set(CurrentItemID, Blank()),Set(CurrentItemID, Param("ItemID")))
I tried to duplicate that statement for the city name (below) but had no luck, when opening a pre-existing ticket my label with "CurrentCityName" is blank.
If(IsBlank(Param("cityName")),Set(CurrentCityName, Blank()),Set(CurrentCityName, Param("cityName")))
Am I misunderstanding Param? Any help would be greatly appreciated.
Cheers