Hi all,
I have a Powerapps form with a "Status" field, this field has 5 values as linked from a Sharepoint choice field in a list which is linked to the form. If I set the field to Editable I can correctly manually select all the choices, so I know the linkage is working. I have the following code set in "Default" status of the field :
If(
Request.Mode = FormMode.New,
{Value: New},
{Value: ThisItem.Status}
)
Despite this on loading the app the field remains empty.
Any ideas what I'm doing wrong? Quite new to PowerApps so likely something stupid I've missed.