copy sheet with date

james_arackal

Board Regular
Joined
Aug 17, 2003
Messages
148
Hi everybody,

I have a sheet1 running some macros which copies data from row one and pastes to adjacent row at an interval of 15 minutes.

I'm trying to create one sheet with a macro, at the end of the day with sheet name as previous day's date and copy all the data from sheet1 to the new created sheet.

Hope I'm clear.

Thanx in advance
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Try this;

Code:
Sub new_sheet()
Sheets.Add.Name = Format(Date - 1, "dd-mm-yy")
Sheets("Sheet1").Range("A1:A" & Sheets("Sheet1").Range("A1").SpecialCells(xlCellTypeLastCell).Row).EntireRow.Copy Sheets(ActiveSheet.Name).Range("A1")
Sheets("Sheet1").Select
'Clears sheet1
'Sheets("Sheet1").Range("A1:A" & Sheets("Sheet1").Range("A1").SpecialCells(xlCellTypeLastCell).Row).EntireRow.ClearContents
End Sub
 
Upvote 0
sorry to disturb you again ,

I have seen the delete code, but i need it in a different way. After copying the sheet. I want to clear contents of 3rd row of the new sheet.

Thanx in advance
 
Upvote 0
Hi,

try this;

Code:
Sub new_sheet()
Sheets.Add.Name = Format(Date - 1, "dd-mm-yy")
Sheets("Sheet1").Range("A1:A" & Sheets("Sheet1").Range("A1").SpecialCells(xlCellTypeLastCell).Row).EntireRow.Copy Sheets(ActiveSheet.Name).Range("A1")
Rows("3:3").ClearContents
Sheets("Sheet1").Select
'Clears sheet1
'Sheets("Sheet1").Range("A1:A" & Sheets("Sheet1").Range("A1").SpecialCells(xlCellTypeLastCell).Row).EntireRow.ClearContents
End Sub
 
Upvote 0

Forum statistics

Threads
1,214,561
Messages
6,120,242
Members
448,951
Latest member
jennlynn

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