Return Value Of "True" . . . Why ? (1 Viewer)

lhooker

Registered User.
Local time
Today, 18:22
Joined
Dec 30, 2005
Messages
405
Can anybody tell me why I'm getting a value of "True" for the results of "Goal_Salable_A " with the below code ?


NumberVar Array Goal_Salable_A := MakeArray (533333, 533333, 533333, 800000, 800000, 800000, 800000, 800000, 800000, 533333, 533333, 533333);
Redim Goal_Salable_A[12];
NumberVar i;
For i := 1 To 12 Do
(
Select {TRACKING_FILE.f451#loan_officer_name}
Case "Ann Meyers":
If {@Goal_Month} = i Then Goal_Salable_A
Case "Gordon Brown":
If {@Goal_Month} = i Then Goal_Salable_A
Case "Maurice Broan":
If {@Goal_Month} = i Then Goal_Salable_A
Case "Ronald Kerr":
If {@Goal_Month} = i Then Goal_Salable_A
Case "Robin Young":
If {@Goal_Month} = i Then Goal_Salable_A
default: 0);
 

Users who are viewing this thread

Top Bottom