How to set Project Priority rules for updating Project Due Date automatically?

vivian
New Member

I am creating a form for inputting new tasks/ projects & I have a column named [Priority].

I have 3 priority options & would like to have an auto update on the column [Due Date].

  1. high = finish within 1 day
  2. Medium = finish within 3 days
  3. Low = finish within 5 days

My default setting on Data > Column is now โ€œMediumโ€ on [Priority] & โ€œ[Record Date]+3โ€ on [Due Date].

But where should I insert the rules for the other 2 options?
Behavior > Actions & โ€œData: set the values of some columns in this rowโ€ on โ€œDo thisโ€?
or it is โ€œData Validityโ€ on Data > Column?

P.S. Not sure if anyone ask the same question before but I canโ€™t found an solution after going thru both community & YouTube. Thanks!

Solved Solved
0 3 229
1 ACCEPTED SOLUTION

Hi @vivian
Maybe check out Ifs or switch?

View solution in original post

3 REPLIES 3

Hi @vivian
Maybe check out Ifs or switch?

Thanks so much Lynn!

I used switch() on my โ€œinitial valueโ€ for [Due Date]:

SWITCH(
[Priority],
โ€œHighโ€,[Record Date]+1,
โ€œLowโ€,[Record Date]+5,
[Record Date]+3
)

@vivian
Good work.

Top Labels in this Space