IF TEST = 1 { ASSIGN ContactID = "123456780" ASSIGN CustomerName = "XYZ International" ASSIGN CBWindowStart = #"{date} 8:00 AM" ASSIGN CBWindowEnd = #"{date} 4:30 PM" } //String Comparison IF CustomerName = "ABC Corporation" { ASSIGN ContractLevel = "Gold" } ELSE { ASSIGN ContractLevel = "Silver" } //Numeric Comparision IF ContactID % 10 = 0 { ASSIGN Logcall = 1 } ELSE { ASSIGN Logcall = 0 } //DateTime Comparison ASSIGN MyTime = #"{time}" IF MyTime >= CBWindowStart && MyTime <= CBWindowEnd { ASSIGN OfferCallback = "True" } ELSE { ASSIGN OfferCallback = "False" }