I've tried a lot of places to find the answer to this problem and can't seem to get past it.
Without too much detail, I need a piece of code that would assign an incrementing number to each record based on the value of another field. So I need to turn:
ID[tab]ExportFileName[tab]Count
1[tab]A
2[tab]A
3[tab]B
4[tab]B
5[tab]B
6[tab]B
7[tab]C
8[tab]C
9[tab]C
Into:
ID[tab]ExportFileName[tab]Count
1 [tab]A [tab]1
2 [tab]A [tab]2
3 [tab]B [tab]1
4 [tab]B [tab]2
5 [tab]B [tab]3
6 [tab]B [tab]4
7 [tab]C [tab]1
8 [tab]C [tab]2
9 [tab]C [tab]3
Any help that anyone can give would be greatly appreciated.
Without too much detail, I need a piece of code that would assign an incrementing number to each record based on the value of another field. So I need to turn:
ID[tab]ExportFileName[tab]Count
1[tab]A
2[tab]A
3[tab]B
4[tab]B
5[tab]B
6[tab]B
7[tab]C
8[tab]C
9[tab]C
Into:
ID[tab]ExportFileName[tab]Count
1 [tab]A [tab]1
2 [tab]A [tab]2
3 [tab]B [tab]1
4 [tab]B [tab]2
5 [tab]B [tab]3
6 [tab]B [tab]4
7 [tab]C [tab]1
8 [tab]C [tab]2
9 [tab]C [tab]3
Any help that anyone can give would be greatly appreciated.