Problem with Input Validation – Mandatory field

Problem with Input Validation – Mandatory field

What I want is when WAREHOUSE is selected, the failure message (“You must select Import or Domestic”) doesn’t get displayed. This message should only gets displayed when INBOUND DELIVERY is selected.

1st Field Name: TypeOfAdj - Radio Button - Editable

Choices: INBOUND DELIVERY and WAREHOUSE

Input Validation: @If(TypeOfAdj!=“” ; @Success; @Failure(“You must enter Type of Adjustment”))

2nd Field Name: TypeOfAdj1 - Check Box - Editable

Choices: Import and Domestic

Input Validation: @If(TypeOfAdj1=“Import”; @Success; @Failure(“You must select Import or Domestic”))

Hide Paragraph = TypeOfAdj !=“INBOUND DELIVERY”

Any help will be appreciated.

Marion

Subject: you can test for TypeOfAdj in the TypeOfAdj1 validation

So for TypeOfAdj1, what you are wanting to say is:

If TypeOfAdj=“WAREHOUSE” then don’t worry about TypeOfAdj1,

but if it is “” or “INBOUND DELIVERY”, then require an answer.

So use this Input Validation for TypeofAdj1:

@If(

TypeOfAdj=“WAREHOUSE”; @Success;

TypeOfAdj !=“WAREHOUSE” & TypeOfAdj1=“”;

@Failure(“You must select Import or Domestic”);

@Success)

Subject: It Works

Thanks for your help it works