How to add multiple conditions in formula in Sharepoint?

Gonzalez, Susana 60 Reputation points
2025-01-08T17:52:25.41+00:00

I am creating an Intake form and I need to have more than one condition for one field. For example, I want to show and hide a particular field based on other fields.

Currently I have the following conditional formula below but I also want to Hide it if they select "Servicing" from the the 'Tower" field. How can I incorporate both conditions? Is it possible?

=if([$ReleaseLanes] == 'Epic Release'|| [$ReleaseLanes] == 'BAU Release', 'true', 'false')

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
11,110 questions
0 comments No comments
{count} votes

Accepted answer
  1. AllenXu-MSFT 22,856 Reputation points Microsoft Vendor
    2025-01-09T02:36:32.61+00:00

    Hi @Gonzalez, Susana,

    From your description I understand that you want to show the field when the value of "ReleaseLanes" field is "Epic Release" or "BAU Release" and the value of "Tower" field is not "Servicing", right? You can use the below formula to achieve this:

    =if(([$ReleaseLanes] == 'Epic Release' && [$Tower] != 'Servicing') || ([$ReleaseLanes] == 'BAU Release' && [$Tower] != 'Servicing'), 'true', 'false')
    

    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 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.