I have a dropdown with the following properties:
Items = Choices('AWI Quality')
Default = galBidsTakeoffOpenBS.Selected.'AWI Quality'.Value
Whereas 'AWI Quality' is a Choice field in a Dataverse table and galBidsTakeoffOpenBS is the name of the gallery that I am using to select the desired record.
The Default property registers an "Expected Text Value" error when typed as above. I have also tried changing Default to:
- galBidsTakeoffOpenBS.Selected.'AWI Quality'
- text(galBidsTakeoffOpenBS.Selected.'AWI Quality'.Value)
- text(galBidsTakeoffOpenBS.Selected.'AWI Quality')
but none of these work.
Does anyone know what I'm doing wrong here. I have a few other dropdowns on the same app page. In all of those instances, I have the Default set to the equivalent of galBidsTakeoffOpenBS.Selected.'AWI Quality' and it works fine. So I'm not sure what the issue is with this one.