Hi there folks!
Hoping you can assist with some VBA code please; code only no formulas in cells.
Logic should be as follows....
1. In sheet "Rec", for all cells in Column C, under Column Heading "Ticket#" that contain a value, copy those cells and the corresponding cell in Column A. If blank, do not copy just skip.
2. In sheet "Ticket# Index", Paste those values in Column A & B, under the column headings "unique id" & "ticket#". However, paste the new data in the first available blank row, so not to overwrite the existing data.
For example with the below....
In Rec, copy [A2&C2] [A5&C5]
In Ticket# Index, Paste in [A4&B4] & [A5&B5],so not to overwrite the existing data in A2:B3
SHEET NAME = REC
<tbody>
</tbody>
SHEET NAME = Ticket# Index
<tbody>
</tbody>
Thank you so much for you're assistance. It's very much appreciated.
Tom
Hoping you can assist with some VBA code please; code only no formulas in cells.
Logic should be as follows....
1. In sheet "Rec", for all cells in Column C, under Column Heading "Ticket#" that contain a value, copy those cells and the corresponding cell in Column A. If blank, do not copy just skip.
2. In sheet "Ticket# Index", Paste those values in Column A & B, under the column headings "unique id" & "ticket#". However, paste the new data in the first available blank row, so not to overwrite the existing data.
For example with the below....
In Rec, copy [A2&C2] [A5&C5]
In Ticket# Index, Paste in [A4&B4] & [A5&B5],so not to overwrite the existing data in A2:B3
SHEET NAME = REC
A | B | C | |||
1 | Unique ID | Status | Ticket# | ||
2 |
<tbody> </tbody> | Blah blah |
<tbody> </tbody> | ||
3 |
<tbody> </tbody> | blah blah | |||
4 |
<tbody> </tbody> | blah blah | |||
5 |
<tbody> </tbody> | blah blah | 6889573 |
<tbody>
</tbody>
SHEET NAME = Ticket# Index
A | B | |
1 | Unique ID | Ticket# |
2 | 1234556789 (existing data) | 6047496 (existing data) |
3 | 9087374636 (existing data) | 005820104 (existing data) |
4 | 72971US1L336000 | 56958435 |
5 | 73198US1L041667 | 6889573 |
6 |
<tbody>
</tbody>
Thank you so much for you're assistance. It's very much appreciated.
Tom
Last edited: