Good morning. I'm hoping someone may be able to assist with an auto incrementing item, please.
I need to increment the last column of a set of numbers that represent employee Job IDs.
I need the goal value to begin at 00, and increment by 1 each time. But also not incrementing when the last value is a duplicate.
So, my goal column would need to look at the first column, second column, and third column of a row. If the row shares the same value in the first column, and unique numbers in the last column, then start at 00. If the value in the last column is a duplicate of the previous row, give it the same value. And when the value in the first column of a row changes, reset the goal value back to 00, and increment using the rules above.
Here's a sample of the data, along with what I would need the goal value to look like.
The data is in columns ABC: And the goal values are in col D:
Col A B C D
2222 12 8977 00
2222 12 8988 01
2222 12 8988 01
2222 12 8989 02
3333 04 8500 00
3333 04 8501 01
3333 04 8502 02
3333 04 8502 02
Thanks!!!<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>
I need to increment the last column of a set of numbers that represent employee Job IDs.
I need the goal value to begin at 00, and increment by 1 each time. But also not incrementing when the last value is a duplicate.
So, my goal column would need to look at the first column, second column, and third column of a row. If the row shares the same value in the first column, and unique numbers in the last column, then start at 00. If the value in the last column is a duplicate of the previous row, give it the same value. And when the value in the first column of a row changes, reset the goal value back to 00, and increment using the rules above.
Here's a sample of the data, along with what I would need the goal value to look like.
The data is in columns ABC: And the goal values are in col D:
Col A B C D
2222 12 8977 00
2222 12 8988 01
2222 12 8988 01
2222 12 8989 02
3333 04 8500 00
3333 04 8501 01
3333 04 8502 02
3333 04 8502 02
Thanks!!!<?xml:namespace prefix = o ns = "urn:schemas-microsoft-comfficeffice" /><o></o>