Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello, Given the following macro:
Sub mastertest() Dim ws As Worksheet, cell As Range, rng As Range For Each ws In ThisWorkbook.Worksheets If Not ws.Name = "Sheet2" Then For Each cell In ws.Range("D1:D" & ws.Range("D65536").End(xlUp).Row) If IsNumeric(cell) = True Then cell.EntireRow.Copy _ Sheets("Sheet2").Range("A65536").End(xlUp).Offset( 1, 0) End If Next cell End If Next ws End Sub How do I edit it to only seach col D only in the spreadsheet tab "New IP Office" and write the results in Sheet2? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
How do I change my column designator from Numeric to Alpha? | Setting up and Configuration of Excel | |||
Excel bar chart formatting of bars to change colors as data change | Excel Discussion (Misc queries) | |||
Use date modified to change format & create filter to track change | Excel Worksheet Functions | |||
Change conditional formatting to coloured alternate rows dependent on a change in date? | Excel Programming | |||
Change Cell from Validated List Not Firing Worksheet Change Event | Excel Programming |