It seems like I may have asked this same question a few years ago... but I can't find it. Date/Time issues always get the best of me. Anyway...
I need to find out how many records are processed at our call center between the hours of midnight and 8am by month for the last three months (April-June).
I tried the following, but as you probably guessed, it was not correct:
IF
{SALES_DATA.REC_TM}
in DateTime (2007, 04, 01, 00, 00, 00)
to DateTime (2007, 06, 30, 08, 00, 00)
THEN
COUNT ({SALES_DATA.REC_ID})
The rec_tm field is the time that the record would have been entered into the software and the rec_id field is the transaction number for the sale.
What am I doing wrong? Thanks
I need to find out how many records are processed at our call center between the hours of midnight and 8am by month for the last three months (April-June).
I tried the following, but as you probably guessed, it was not correct:
IF
{SALES_DATA.REC_TM}
in DateTime (2007, 04, 01, 00, 00, 00)
to DateTime (2007, 06, 30, 08, 00, 00)
THEN
COUNT ({SALES_DATA.REC_ID})
The rec_tm field is the time that the record would have been entered into the software and the rec_id field is the transaction number for the sale.
What am I doing wrong? Thanks