Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Public Sub DelManufact()
Dim intNum, intRows As Integer Dim strMan, strTest As String Dim a Application.ScreenUpdating = False strMan = "" strTest = "" intNum = 0 intRows = 0 Range("A1").Select Set a = Selection strMan = UCase("manufacture") Range(a, a.SpecialCells(xlLastCell)).Select intRows = Selection.Rows.Count For intNum = 0 To intRows 'use .Text in case the word is a formula type strTest = UCase(ActiveCell.Offset(0, 0).Text) If strMan = strTest Then Rows(intNum).EntireRow.Delete 'shift:=xlUp 'If you delete a row you have to account for it in the toal rows already determined. intRows = intRows - 1 ActiveCell.Offset(0, 0).Select Else ActiveCell.Offset(1, 0).Select End If Next End Sub " wrote: I am trying to make a macro that deletes entire rows if in column 70 it does not say "Manufacturer". I have created one that I think should work, however it says error 424 object required and it does not say where. Any suggestions? This is the macro: Sub ManufacturingMacro( ) Dim Variable Dim x ' Delete all non-manufacturing companies x = 1 Do While Cells(x, 70).Value < "" x = x + 1 Set Variable = Cells(x, 1) If Variable.Value < "Manufacturer" Then EntireRow.Delete End If Loop End Sub |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Error Help - Method "Range" of object "_Worksheet" failed. | Excel Programming | |||
Macro to Create New Worksheet and Reference Cell in Old Worksheet As Tab Name - "Object Required" Error | Excel Discussion (Misc queries) | |||
Error in Macro: "Method 'Paste' of object '_Worksheet' failed" | Excel Programming | |||
What is Error "Method "Paste" of object "_Worksheet" failed? | Excel Programming | |||
"Clean Me" Macro is giving "#VALUE!" error in the Notes field. | Excel Programming |