ย
This example uses a standard Date property but you'd simply use a Created Time property instead.
Stage
if(now() < prop("Agreements by"), "๐ Agreements", if(now() > prop("Agreements by") and now() < prop("Implement by"), "๐ Implement", if(now() > prop("Implement by") and now() < prop("Invoice by"), "๐ฐ Invoice", if(now() > prop("Invoice by") and now() < prop("Report by"), "๐ Report", ""))))
Stage (Combined)
if(now() < dateAdd(prop("Created"), 14, "days"), "๐ Agreements", if(now() > dateAdd(prop("Created"), 14, "days") and now() < dateAdd(prop("Created"), 20, "days"), "๐ Implement", if(now() > dateAdd(prop("Created"), 20, "days") and now() < dateAdd(prop("Created"), 30, "days"), "๐ฐ Invoice", if(now() > dateAdd(prop("Created"), 30, "days") and now() < dateAdd(prop("Created"), 45, "days"), "๐ Report", ""))))
ย