
Announcements
Very simple if you know how....
I want to show an error message when an end user hits submit if a mandatory field is not completed
How do I do this?
@Flownewbie1 not sure what you mean by "Conditional Formatting", but see the basic pattern below based on your description:
If(
'Your Form'.Valid,
SubmitForm('Your Form'),
Notify(
"Please complete all mandatory fields",
NotificationType.Warning
)
)