Hi Stan. I've been customizing our grid (rack) colours for various reservation types with good success, but I've bumped up against one scenario that has me stumped. For cabin bookings of 5 or more days, we process the balance 30 days in advance of arrival, and I'd like those bookings to be a different colour on the grid. So I need to build two expressions, one for guaranteed cabin bookings of 5+ days, another for guaranteed, chosen (don't move) cabin bookings for 5+ days. This is what I've done, but it isn't working:
ColorStatusResv(Resv(),ThisDate(),ThisPeriod()) = 24 AND Resv:Resv_Type = "Normal" AND Site:Attrib_Site_Type = "Cabin" AND ((Resv:Resv_Last_Date - Resv:Resv_First_Date) +1) >=5
---
ColorStatusResv(Resv(),ThisDate(),ThisPeriod()) = 50 AND Resv:Resv_Type = "Normal" AND Resv:Resv_Dont_Move AND Site:Attrib_Site_Type = "Cabin" AND ((Resv:Resv_Last_Date - Resv:Resv_First_Date) +1) =>5
Where am I going wrong?![]()