Hi all,
I have 2 fields one is I am an inventor (yes/no) field and the other is signature (text field).
So, the signatures in the signature field should be in "/signature/" format.
if user clicks yes for that yes or no field then the signature field should become mandatory and check whether the signature is in the above format or not.
I used following validation rule . it seems to be not working
not(not(IamanInventor)) && (!startsWith(SignedByField,'/') || !endsWith(SignedByField,'/')))
and below is the validation rule for mandatory that is working
not(not(IamanInventor)) && isNullOrEmpty({Self})
The syntax rule is not working could you please help me out??