AnyaIT
6 years agoQrew Member
Set seasonal rates automatically
Take for instance you have three hotels each in a different country and all have different rates which change by season. High season is from Nov 14 to April 14 and low season is from April 15 to Nov 1...
- 6 years agoYou can make a formula numeric field
var date mydateone = Date(Year(Today()), 4, 15); var date mydatetwo = Date(Year(Today()), 11, 15); If(Today()>=$mydateone and Today()<=$mydatetwo, [Low], [High])
------------------------------
Everett Patterson
------------------------------