Sharepoint calculated column

Developer1911 20 Reputation points
2024-06-10T16:35:28.7333333+00:00

My calculated column I only want yes to display if any columns are yes; however, I want N/A to display if any columns are blank. Right now, yes is calculated when fields are empty when it should be N/A because a column is empty.Any suggestion? Below is my code

=IF(AND([AP Spend]="no",Contract="no",[SharePoint Findings]="no"),"no",
IF(OR([AP Spend]="yes",Contract="yes",[SharePoint Findings]="yes"),"yes",
IF(OR(ISBLANK([AP Spend]),ISBLANK(Contract),ISBLANK([SharePoint Findings])),"N/A")))
SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,159 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. AllenXu-MSFT 17,741 Reputation points Microsoft Vendor
    2024-06-11T01:59:46.15+00:00

    Hi @Developer1911,

    According to your description, you should use this formula:

    =IF(AND([AP Spend]="no",Contract="no",[SharePoint Findings]="no"),"no",
    IF(OR(ISBLANK([AP Spend]),ISBLANK(Contract),ISBLANK([SharePoint Findings])),"N/A","yes"))
    

    User's image

    Hope my answer helps. Thanks.


    If the answer is helpful, please click "Accept as 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.