So the code I currently have is button-based, and is located in Workbook A, when pressed, it opens Workbook B and pastes a designated range of data from Workbook A to Workbook B.
Unfortunately, I am now stuck. I know it seems simple, but I am at a writers block.
I need this code to not just grab a range from Workbook A, but search for the word "NEW" accross 4 columns, and then paste any row that contains "NEW" into Workbook B below the data that is already there.
This is a data tracker, so I want historical data which is why I need the code to recognize the old data and paste the new days' data under yesterdays.
I apoligize if this does not make sense, I am a little flustered as I do need this complete soon. Any help would be much apprecaited!
Here is what I have:
Unfortunately, I am now stuck. I know it seems simple, but I am at a writers block.
I need this code to not just grab a range from Workbook A, but search for the word "NEW" accross 4 columns, and then paste any row that contains "NEW" into Workbook B below the data that is already there.
This is a data tracker, so I want historical data which is why I need the code to recognize the old data and paste the new days' data under yesterdays.
I apoligize if this does not make sense, I am a little flustered as I do need this complete soon. Any help would be much apprecaited!
Here is what I have:
Code:
'Copy the range from Workbook A
wsI.Range("A1:H30").Copy
'Paste to Workbook B
wsO.Range("A1").PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, _
SkipBlanks:=False, Transpose:=False