I am using the following query:
I need to add a sequential number starting with zero in a field called COUNT. I have read about many solutions but they seem to be a bit over my head. Is there a way to accomplish this?
Appreciate any suggestions.
Paul
Code:
SELECT "Outlook" AS queuename, tblinbox_test.from1 AS employee, "3" AS eventType, Count(tblinbox_test.from1) AS CountOffrom1, "SYSTEM_Outlook_VCT" AS updateBy, DateAdd("s",-1,DateValue([received])+1) AS updateDate
FROM tblinbox_test
GROUP BY "Outlook", tblinbox_test.from1, "3", "SYSTEM_Outlook_VCT", DateAdd("s",-1,DateValue([received])+1);
I need to add a sequential number starting with zero in a field called COUNT. I have read about many solutions but they seem to be a bit over my head. Is there a way to accomplish this?
Appreciate any suggestions.
Paul