Hello Power Apps Gurus, I have made a field (say Comments) mandatory when a Combo Box field (say status) are of certain values,.
Required Property for Comments : DataCardValue54.Selected.Value = "At Risk" || DataCardValue54.Selected.Value = "Issue"

But i dont see any error message to say this is a mandatory field, instead i see just the (*)
In fact its true for other Mandatory field as well(the one i made it mandatory in the Sharepoint list)
Also, i have 4 different forms (with selected fields in each of the form) and i use below formula for OnSelect Property for Submit button in the last page.
Patch(
<SharepointList>,
varMIT,
1st_form.Updates,
2nd_form.Updates,
3rd_form.Updates,
4th_form.Updates
);
If (
IsEmpty(Errors(<SharepointList>)),
Notify (
"Success",
NotificationType.Success
);
Navigate(HomeScreen),
Notify(
First(Errors(<SharepointList>)).Message,
NotificationType.Error
)
);

And i could Submit(button in the last form) the updates without even entering anything against the mandatory fields.
I need some help in restricting user from submitting the form when mandatory fields (Level1 and Comments) not having any data.