Skip to main content

Hi everyone,

 

Is it possible to apply Mandatory Ruling to a hiden choice field dependant on the a choice of a drop down. I have the formula which hide a field but I am struggling to apply it as a mandatory field.

For example, If the choice is made from a Drop Down list then a single choice field required an choice.

 

1, Question:

In my scenario, I am creating a digital request form for server management. So when the selection "DPC - Cyber Forensic" is made from the dropdown menu, the single selection "Create DEV-Database" Yes or No must be selected.

Thats the rule for hide: UseCaseArea!="DPC – Cyber Forensic"

How would I have to build the role to make this field mandatory?

 

2, Question:

In a second step, based on the selection in two drop down lists, fields are to be filled in mandatory.

Thats the rule for hide: not(or(equals(parseLookup(Projekttyp),"Relativity"), equals(parseLookup(Projekttyp),"RelativityBrainspace")))

How would I have to build the role to make this field mandatory?

 

Thank you in advanced

To your current rules you can add :
&&isnullorempty(Self) to make it mandatory or
||isnullorempty(Self)

If it doesn't work you might need to modify your rule for the dropdown to use not contain instead of !=

Reply