D
DEL
I'm trying to create a table which counts off groupings of unique values.
Example:
Subj Course# SeqNo.
MAT 101 1
MAT 101 1.5
MAT 101 2
BIO 101 1.5
BIO 101 1.75
BIO 101 1.8
BIO 101 1.9
My desired table is simply to increment of each entry for the unique Subj &
Course# by 1
End Result Desired:
Subj Course# SeqNo. Countoff
MAT 101 1 1
MAT 101 1.5 2
MAT 101 2 3
BIO 101 1.5 1
BIO 101 1.75 2
BIO 101 1.8 3
BIO 101 1.9 4
Any help would be appreciated!
R/S,
DEL
Example:
Subj Course# SeqNo.
MAT 101 1
MAT 101 1.5
MAT 101 2
BIO 101 1.5
BIO 101 1.75
BIO 101 1.8
BIO 101 1.9
My desired table is simply to increment of each entry for the unique Subj &
Course# by 1
End Result Desired:
Subj Course# SeqNo. Countoff
MAT 101 1 1
MAT 101 1.5 2
MAT 101 2 3
BIO 101 1.5 1
BIO 101 1.75 2
BIO 101 1.8 3
BIO 101 1.9 4
Any help would be appreciated!
R/S,
DEL