Forum Discussion
Thomasw1964
Sep 26, 2023Copper Contributor
Calculated formula not working
Trying to create a calculated column,"Phase", based on number of days client has been in our program. We give clients a "Start Date" the first 30 days they are Phase1, 30 to 365days Phase2, over 365...
SvenSieverding
Sep 26, 2023Bronze Contributor
Hi Thomasw1964 ,
This should work:
IF([Start Date]>TODAY()-30, "Phase1",IF([Start Date]>TODAY()-365, "Phase2", "Phase3"))
But remember: Calculated columns only update themself if the item is updated. They don't recalculate automatically if just a day has passed. If you want that, then you need to apply a custom column formatting.
Best Regards,
Sven
Thomasw1964
Sep 26, 2023Copper Contributor
Tried that and it actually made the list break, But I will need this to auto update , so ..Thanks for the help