Hi @ejules
The Default is "Parent.Default"
- This is to append any existing data (if any) or blank if none.
However, if you wish to change, you need to select
- Advanced
- Unlock (you can see the icon, just click on it)
Then you may change the Default to:
- If(IsBlank(One of your datafield), "Inland", Parent.Default)
In this case, when you are
- Add a new item, most of the TextInput will be BLANK (but not default value such as createddate, Auto-ID,..), so it will detect that this is a NEW record and will set the Dropdown1.Default = "Inland".
If you are unsure of the items, you may use:
- First(YourDropDown).
Hope this helps.