Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions,microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I have workbook with 5 to 6 sheets. I need to copy all the details to sheet named "TOTAL" Below code will go through all the sheets & from Cell A2 to used range it will copy and paste in sheet "TOTAL" Below code some problem i guess, I have used If condition, can anyone give more simple coding better than if conditon. and Is there any other coding (ActiveSheet.UsedRange.Rows.Count ) to count the number rows used and column apart from what ever i have mentioned ? Range("A2", Range("A2").Offset(lastrow, lastcol)).Select - Better line code than this ? can anyone suggest me. Sub group() Dim i As Integer Application.ScreenUpdating = False For i = 2 To Sheets.Count Worksheets(i).Select lastrow = ActiveSheet.UsedRange.Rows.Count lastcol = ActiveSheet.UsedRange.Columns.Count Range("A2", Range("A2").Offset(lastrow, lastcol)).Select Selection.Copy Range("A1").Select Worksheets("total").Select Range("A2").Select If Range("A2").Value = "" Then ActiveSheet.Paste Else Selection.End(xlDown).Select ActiveCell.Offset(1, 0).Select ActiveSheet.Paste End If Next Application.ScreenUpdating = True Application.CutCopyMode = False End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How can change range to select active rows instead of :=Range("S10 | Excel Discussion (Misc queries) | |||
macro to select range from active cell range name string | Excel Programming | |||
When entering data into a range of cells, select the entire range. | Excel Discussion (Misc queries) | |||
Compare a selected Range with a Named range and select cells that do not exist | Excel Programming | |||
Select Sheet then Select Range | Excel Programming |