Hi, thank you in advance for any help and apologies if this is poorly worded or already solved elsewhere. It is fairly specific so I couldn't find any previous threads on it.
- using Excel 2010, Windows 10
- I have a column A of data ("name") with changing values - many values are duplicates, and all ordered.
- I need to check for when the value changes in the col A "name", and when it does I need to copy a value from another column C ("sid") in order of data
- then take value from col C and copy it to a new column B ("sid_added") in order, to match when the value in COL A changes
This is what current data looks like:
And this is what I am looking for as the end result:
Thank you again for any help and time, it is much appreciated.
- using Excel 2010, Windows 10
- I have a column A of data ("name") with changing values - many values are duplicates, and all ordered.
- I need to check for when the value changes in the col A "name", and when it does I need to copy a value from another column C ("sid") in order of data
- then take value from col C and copy it to a new column B ("sid_added") in order, to match when the value in COL A changes
This is what current data looks like:
name | sid_added | sid |
Bob | 1052 | |
Bob | 2002 | |
Bob Green | 2544 | |
Bob Green | 1542 | |
Bob Green | ||
Mary | ||
Mary Orange | ||
Mary Orange | ||
Mary Orange |
And this is what I am looking for as the end result:
name | sid_added | sid |
Bob | 1052 | 1052 |
Bob | 2002 | |
Bob Green | 2002 | 2544 |
Bob Green | 1542 | |
Bob Green | ||
Mary | 2544 | |
Mary Orange | 1542 | |
Mary Orange | ||
Mary Orange |
Thank you again for any help and time, it is much appreciated.