Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
I have many tabs that I want to copy information into a new sheet
within the same workbook. I need to Copy A5 into Column A, A10 into Column B, C3 into Column C. Column D needs to be a total, which is listed in Column H, but it in different cells, the cell above it always says Balance. Column E needs to be the last populated cell in the column that says balance. I have the following macro, how do I adjust it to get the additional data? Sub Copy_Data() Dim w As Worksheet Application.ScreenUpdating = False Application.DisplayAlerts = False Set CopytoSheet = Worksheets.Add CopytoSheet.Name = "Copyto" For Each w In ActiveWorkbook.Worksheets w.Range("A1").Copy Destination:=Sheets("CopyTo") _ .Cells(Rows.Count, 1).End(xlUp).Offset(1, 0) Next w Application.DisplayAlerts = True Application.ScreenUpdating = True End Sub Thanks! |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro to delete a text box and copy in new one | Excel Discussion (Misc queries) | |||
Activate a macro to insert a row and copy the formuals from the rows above to the blank row | Excel Discussion (Misc queries) | |||
Date macro | Excel Discussion (Misc queries) | |||
Need Macro to copy specific sheet | Excel Worksheet Functions | |||
copy macro assigned buttons in an array | Excel Worksheet Functions |