Skip to main content

i have a WF in which fields are disabled initially and these fields are enabled once form is approved.

How do i make sure these fields are mandatory after form is approved?

you should assign a validation rule to respective fields.

I'd assume you a field like 'Status' that tells you whether an item is approved or not. then your rule formula might look like:

Status == 'Approved' && IsNullOrEmpty(NamedControlToBeMandatory)


in the same WF, i have a field which has validation,the validation works fine when form is submitted but it shows error(invalid field) after form is again edited.Not able to figure out reason for it


post screenshot of whole error message, configuration of the rule and whole rule's formula


Reply