I have search the posts and can't seem to find a solution to the following:
I have just and ID and I want to create a query to automatically sequence these ids.
ID SEQUENCe
2 1
2 2
2 3
2 4
4 1
6 1
6 2
8 1
Does anyone know how this can be done in an Access query.
I can do this
but when I try and add anything else to it, my value becomes 0. I am at a loss right now. any help?
I have just and ID and I want to create a query to automatically sequence these ids.
ID SEQUENCe
2 1
2 2
2 3
2 4
4 1
6 1
6 2
8 1
Does anyone know how this can be done in an Access query.
I can do this
Code:
SEQ: ((Select Count(SYS_ID) from tmpQRY_empl R Where R.SYS_ID = tmpQRY_empl.SYS_ID))
but when I try and add anything else to it, my value becomes 0. I am at a loss right now. any help?