Hello,
I have a (functioning) PowerApps form pointing to SQL Server. One of the fields is a dropdown box where, if it is a new records, displays "...Select a value" and, if modifying a record, shows the currently saved record. This works fine:
DEFAULT: If(EditForm_InvestmentChecklist.Mode=New, "...Select a value", ThisItem.LGL_InvestmentChecklist_InvestmentName)
But, the users want to be able to search/filter the dropdown results so it appears I need to use a combobox. The DEFAULT calc above does not work in the combobox. Have also tried moving this to DEFAULTSELECTEDITEMS and that doesn't work either. I have 'Allow Multiple Selections' = False. Can only have 1 value selected.
Any assistance appreciated.
Thanks,
Dan