Ok so I have a dropdown in my powerapp for the status of a record. At the moment to make the default value to "Open" I have the following
DefaultSelectedItems : If(AuditBuildingForm.Mode=FormMode.New,{Value: "Open"}, Parent.Default)
Field is called Status
This works perfectly to set the drop down to Open when i first create the form.
From here the author might save the file for later or complete the form. When they complete i want them to click a button to Complete which will do a few things (submit the form, send a message to teams) including change the entry in the Status dropdown to "Complete"
Yes "Complete" is an option in my drop down list.
I have tried about 10 different way to get this to work and it still does nothing. Ideas please ?