Home |
Search |
Today's Posts |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Am Thu, 9 Aug 2012 11:06:05 -0700 (PDT) schrieb djc: Hi Claus,I did some more research, There were other roll up tabs that were skewing the data. It worked well. I failed to mention the formulas in my first post. I would like the macro to return values only and not any formulas (my ultimate goal is to get this into a flat file). then try: Sub Combine() Dim LRow As Long Dim wsh As Worksheet For Each wsh In ThisWorkbook.Worksheets LRow = Sheets("Combined").Cells(Rows.Count, 1).End(xlUp).Row + 1 With wsh If .Name < "Combined" Then .Range("A13:P55").Copy Sheets("Combined").Range("A" & LRow) _ .PasteSpecial xlPasteValues End If End With Next End Sub Regards Claus Busch -- Win XP PRof SP2 / Vista Ultimate SP2 Office 2003 SP2 /2007 Ultimate SP2 |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
combining worksheets | Excel Worksheet Functions | |||
Combining worksheets | New Users to Excel | |||
Help searching and summing across multilple worksheets | Excel Discussion (Misc queries) | |||
Combining 2 or more worksheets | Excel Worksheet Functions | |||
combining two worksheets into one | Excel Programming |