2

I'm developing list for managing a project with 11 columns each representing a project milestone.

We'll call them A,B,C...K.

"A" representing a status of "Project Started" and K representing "Project Complete" with various statuses in between.

When a milestone has been reached, the date is input into the appropriate column. So when the project is complete, there will be dates in all columns A-K

I wish to incorporate a new column that indicates the current status depending on if columns A-K have been filled in.

So if all columns are blank, a status of "Awaiting start" is indicated.

If column A is filled in with a date, a status of "A" is indicated.

If columns A and column B are filled in then a status of "B" is indicated.

If columns A, B and C are filled in then a status of "C" is indicated. * * If all the columns are filled in with dates, a status of "K" is indicated.

diagram

Any ideas? Some form of If statement in a calculated Status column?

1 Answer 1

6

You can try If statement in calculated column like

IF([Status]="On Track","1",IF([Status]="Concern but Plan in place", "2", IF([Status]="Open need Plan", "3", "0"))) 

Column blank check you can perform as:

=IF(ISBLANK([My Column]),"EMPTY",[My Column]) 

For multiple checks:

Calculated column- evaluating multiple conditions

In this way you can build your formula.

1
  • 1
    use semi column (;) instead of comma if it gives syntax error for if. egilhansen.com/2013/02/14/… Commented Dec 7, 2016 at 9:09

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.