2

I'm looking to create a calculated column in a SharePoint list.

If column1,column2,column3,column4 and column5 all have dates Show as complete, If not Incomplete.

Thanks.

2 Answers 2

2

Try this formula:

=IF(AND(NOT(ISBLANK([Column1])), NOT(ISBLANK([Column2])), NOT(ISBLANK([Column3])), NOT(ISBLANK([Column4])), NOT(ISBLANK([Column5]))), "Complete", "Incomplete")
2

Try using formula for your SharePoint calculated column like below:

=IF(OR(ISBLANK([Column 1]),ISBLANK([Column 2]),ISBLANK([Column 3]),ISBLANK([Column 4]),ISBLANK([Column 5])),"In Complete","Complete")

Note:

  1. Sometimes comma(,) does not work in formula (it is based on language or regional settings on your site). So in that case use semicolon(;) instead of comma(,).
  2. Use correct display name of your SharePoint columns in above formula.
  3. Wrap column names inside [] if your column name has space in it. For example: [My Column Name].

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.