If(
IsBlank(System.Selected.Value) || Description.Text=Blank(),
Notify("Kindly fill in all the required fields to proceed.", NotificationType.Error),
!IsBlank(System.Selected.Value) && Description.Text<>Blank(),
Patch(
'Issue tracker (Dummy)',
Defaults('Issue tracker (Dummy)'),
{'Requestor Name': Requestor.Text,
'Requestor Email': RequestorEmail.Text,
Department: RequestorDepartment.Text,
System: {Value: System.Selected.Value},
'Issue Description': Description.Text,
'Date requested': DateRequested.SelectedDate,
'Notify Others': Concat(ComboEmail.SelectedItems,Mail),
Attachments: Attachment_control}
),
Notify("Your ticket has been successfully submitted.", NotificationType.Success)
);
Can anyone help me?~