I have a dropdown called dpdCountry, the selected value is then assigned to a variable.
The selected item from a dropdown box is considered a Recorded Value in the variable I assigned to it. I want to place the variable inside a label to be displayed on the screen, but PowerApps won't let me as the variable must be a Text Value to do this. The error reads: "Invalid argument type. Expecting Text, Number, Boolean etc."
Here's the code I have for assigning the combo box selected item to a variable (the dropdown is called dpdCountry):
Set(countryVal,dpdCountry.Selected)
This is the code that won't work for displaying the variable value in a label:
"Country is: " & cityVal
Any help would be appreciated!