Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
What�s the symptom of the problem.
Also if Weeks calculates to a number near you break point such as 54.5, your formula is not catching that.
Also if Weeks calculates to a number near you break point such as 54.5, your formula is not catching that.
- _anomDiebolt_8 years agoQrew EliteI missed Mark's point. Maybe update as follows:
var Number NumWeeks = ToNumber([Weeks]);
If([Project Type] = "New",
If(
55 <= $NumWeeks and $NumWeeks < 68, "Phase 1",
41 <= $NumWeeks and $NumWeeks < 55, "Phase 2",
27 <= $NumWeeks and $NumWeeks < 41, "Phase 3",
13 <= $NumWeeks and $NumWeeks < 27, "Phase 4",
1 <= $NumWeeks and $NumWeeks < 13, "Phase 5",
"Phase 6"
) )