Solved

Mandatory Ruling based on a drop down choice

  • 7 April 2021
  • 1 reply
  • 63 views

Badge +3

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

icon

Best answer by Nunezma 7 April 2021, 15:31

View original

1 reply

Badge +11
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