SharePoint List Validation Settings Formula with Nested IFs

Michael T. Sherman 20 Reputation points
2024-11-15T21:15:23.24+00:00

I'm trying to turn this logic into a formula that can be used in the Validation Settings, but I don't know the right syntax.

=IF([Event Type]="Option 1",IF(ISBLANK([Option 2]),FALSE,TRUE),TRUE)

Microsoft 365 and Office SharePoint For business Windows
0 comments No comments
{count} votes

Accepted answer
  1. RaytheonXie_MSFT 40,471 Reputation points Microsoft External Staff
    2024-11-18T06:40:04.68+00:00

    Hi @Michael T. Sherman

    You will need to add AND when you have two condition. The formula should be like following

    =IF(AND([Event/Project Type]!="A3 Problem Solving",[Event/Project Type]!="Just Do It"),IF(ISBLANK([Report Outs]),FALSE,TRUE),TRUE)
    
    
    
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.