Forum Discussion
ConnM
May 22, 2024Copper Contributor
Conditional Validation Statement Partially working
Hello I want to set up a condition, where if the user has said they have security considerations, they need to answer the questions before they submit the form. Currently, the condition stops t...
ConnM
May 22, 2024Copper Contributor
I figured it out
I was being silly and forgot what AND meant
=IF(AND([Send for Approval]=TRUE,[Are there any security considerations?]=TRUE),
IF(AND(NOT(ISBLANK([Does the project involve storage of information on a 3rd party system? If so please identify])),
NOT(ISBLANK([Does the project involve the handling or processing of confidential or sensitive information?])),
NOT(ISBLANK([Does the project involve the handling or transmission of personally identifiable information?])),
NOT(ISBLANK([Does the project involve the sharing of information with a range of different parties? Internal and External])),
NOT(ISBLANK([Is there a risk of unauthorized parties accessing information?])),
NOT(ISBLANK([Hosting Location]))),TRUE,FALSE),TRUE)