The intention of the ComboBox is to automatically pull through the display name of the user signed into the app.
The user has the option to change the ComboBox to another users name, it is searchable.

The issue I am experiencing is, if the name is automatically filled in, nothing comes up when its patched through.
If you select any user in the company, even yourself, then the data shows up.
Why does the Automatic name pull through as blank?

Is it the way I am patching the data?
If(
!IsBlank(ComboBox1.Selected) &&
!IsBlank(TextInput3.Text),
Set(
varRecordID,
Patch(
'IFP - PPE Cart Orders',
Defaults('IFP - PPE Cart Orders'),
{
Requestor: ComboBox1.Selected,
Title: TextInput2.Text,
'Order Comments': TextInput3.Text,
'Order total': Sum(colPPECart, SubTotal)
}
).ID
);
Collect('IFP - PPE Cart Ordered Items', AddColumns(colPPECart, OrderID, varRecordID ));
Clear(colPPECart);
Notify("Submission Successful", NotificationType.Success, 2000);
Navigate(scrPPEHome),
Notify("Please fill in all required fields.", NotificationType.Error, 2000)
)
Is it because I used ".Selected"? and it is not a selection?
I populate the name by...
On ComboBox - DefaultSelectedItems -
{
DisplayName: Office365Users.MyProfile().DisplayName,
UPN: Office365Users.MyProfile().UserPrincipalName
}
Cheers 😂