jumpy262000
February 15th, 2007, 09:22 AM
I'm trying to count the number of records between a value of work days.
For example I have three columns
Work Days, Keyrec, Status
3 1235 Active
2 1234 Active
2 1236 Active
2 1237 Active
0 1238 Active
I'm trying to create a summary in the report header that counts keyrecs between working days
Keyrec's between 0 to 2 days: 4
Keyrec's between 3 to 4: 1
I tried this formula
IF {iSeriesSQL_FADC_Unfinalized_Keyrec.KEYREC} in 0 to 2 Then
Count({@WorkDays} )
Else 0
The total so far is always 0.
@workdays is a concatginzed formula.
Open to any ideas!
For example I have three columns
Work Days, Keyrec, Status
3 1235 Active
2 1234 Active
2 1236 Active
2 1237 Active
0 1238 Active
I'm trying to create a summary in the report header that counts keyrecs between working days
Keyrec's between 0 to 2 days: 4
Keyrec's between 3 to 4: 1
I tried this formula
IF {iSeriesSQL_FADC_Unfinalized_Keyrec.KEYREC} in 0 to 2 Then
Count({@WorkDays} )
Else 0
The total so far is always 0.
@workdays is a concatginzed formula.
Open to any ideas!