Hi folks, I'm struggling trying to get this to work and could use some help.
I've got two fields, a dropdown called "contract_dropdown" and a text input called "contract_desc". The Dropdown has a list of a few values, one of which is the string (value?) "Other".
What I want is, when contract_desc is not empty to default contract_dropdown to the "Other" option. If contract_desc is empty then it should just be Parent.Default.
I've got a mostly working if statement, but I can't figure out how to set the value for contract_dropdown from within the default property of contract_dropdown.
If(IsBlank(contract_desc),Parent.Default,{Value: "Other"})
What do I need to put in the else section to set the value of the dropdown?