Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
Try this
If(
isnull([lease expiry], "Missing Lease Expiry",
AdjustMonth([Lease Expiry],0) <= Today(), "Expired",
AdjustMonth([Lease Expiry],-6) <= Today(), "Next 6 Months",
AdjustMonth([Lease Expiry],-12) <= Today(), "Next 12 months",
AdjustMonth([Lease Expiry], -24) <= Today(), "Next 24 Months", "More that 24 months)
)
If(
isnull([lease expiry], "Missing Lease Expiry",
AdjustMonth([Lease Expiry],0) <= Today(), "Expired",
AdjustMonth([Lease Expiry],-6) <= Today(), "Next 6 Months",
AdjustMonth([Lease Expiry],-12) <= Today(), "Next 12 months",
AdjustMonth([Lease Expiry], -24) <= Today(), "Next 24 Months", "More that 24 months)
)