Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello from Steved
Is it possible please to combine the 2 below macros into 1 macro. Thankyou. Sub AddNameNewSheet2() Dim CurrentSheetName As String CurrentSheetName = ActiveSheet.Name Sheets.Add On Error Resume Next Worksheets.Add.Name = "Waiheke" Worksheets.Add.Name = "Panmure" Worksheets.Add.Name = "Swanson" Worksheets.Add.Name = "Orewa" Worksheets.Add.Name = "Shore" Worksheets.Add.Name = "Wiri" Worksheets.Add.Name = "Papakura" Worksheets.Add.Name = "Roskill" Worksheets.Add.Name = "City" Do Until Err.Number = 0 Err.Clear Loop On Error GoTo 0 Sheets(CurrentSheetName).Select End Sub Sub test4() Dim rng As Range Dim WS As Worksheet For Each WS In Worksheets If WS.Name < "Audit Report" Then Set rng = FilterData(WS.Name) If Not rng Is Nothing Then rng.Copy WS.Range("A2") End If End If Next WS End Sub Private Function FilterData(sCity As String) As Range Dim cRows As Long Range("A1").EntireRow.Insert Range("A1").FormulaR1C1 = "temp" cRows = Cells(Rows.Count, "A").End(xlUp).Row With Columns("A:A") .AutoFilter .AutoFilter Field:=1, Criteria1:=sCity End With Set FilterData = Range("A2:A" & cRows).SpecialCells(xlCellTypeVisible).EntireRow Rows("1:1").Delete Shift:=xlUp End Function |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
combine two macros | Excel Discussion (Misc queries) | |||
How do I combine MACROS and functions? | New Users to Excel | |||
combine two macros | Excel Worksheet Functions | |||
Combine two macros using InStr? | Excel Programming | |||
Combine 2 macros | Excel Programming |