Macro to append data to a different workbook

smarinaj

New Member
Joined
Feb 7, 2011
Messages
5
Good afternoon,

I have to admit that I have very little experience creating macros, so I would love to get your help.

I created the following macro to do this:

1. Get data in Workseet "C" of my Test Workbook
2. Paste it into a new workbook named "WordsA.xls".

I need to do this process every day, so I would like to append the new data I enter in my "Test" workbook to the workbook named "WordsA.xls", without deleting what I already have in "WordsA.xls".

Can you please help me accomplish this? Thanks in advance.

Right now my code looks like this:

Sub CopyWorkbookA()
Dim wb As Workbook
Worksheets("A").Copy
Set wb = ActiveWorkbook
wb.SaveAs "WordsA.xls"
wb.Close
End Sub
 

Excel Facts

Format cells as time
Select range and press Ctrl+Shift+2 to format cells as time. (Shift 2 is the @ sign).

Forum statistics

Threads
1,223,228
Messages
6,170,875
Members
452,363
Latest member
merico17

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top