How do I use Select Case Statements in CR8 ?
This is what I wanted to do -
stringVar Rating;
numberVar avgDays := {@Avg Days - New};
Select Case avgDays
Case >= 5 // <---What is the right way to do this ?
Rating := "Bad"
Case >= 3
Rating := "Fair"
Case >= 2
Rating := "Good"
End Select
Any leads ??
Thanks very much in advance.