Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 5,939
Default Object Required

There are actually a bunch of errors in the code. It will be hard to debug
without the actual code...

Try something more like...

Sub DeleteRedPrairie()
Dim rng as Range
set rng = columns(1).Find("RedPrairie")
if not rng is nothing then
do
rng.EntireRow.Delete
set rng = columns(1).Find("RedPrairie")
loop while not rng is nothing
End if
end Sub


--
HTH...

Jim Thomlinson


"Chuck Neal" wrote:

Actually, I have the dot in the code....just did not include it here. Sorry
I have two computers and the code is on the other one. Still get the error.

"Jim Thomlinson" wrote:

missing a dot...

If Cells(i,1).Value = "RedPrairie" Then
--
HTH...

Jim Thomlinson


"Chuck Neal" wrote:

Why do I get "Object Required" with this? What is wrong? I want to delete
every row that has "Red Prairie..." in the cell.

Sub DeleteRedPrairie ()
Dim lastrow as Long, i As Long
lastrow = Cells(Row.Count, 1) .End(x1Up) .Row
For 1 = lastrow To Step -1
If Cells(i,1) Value = "RedPrairie" Then
Rows(i).Delete
End If
Next
End Sub

I also want to be able to delete the row immediately below the on that
contains RedPrairie.

Please help....these rows are screwing up everything I do. Also due to
concatenate formulas I need to run, I cannot sort this first. Filtering
slows down my macros immensely.

Chuck

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
R/T 424 - Object required Help Jim May Excel Discussion (Misc queries) 2 April 10th 08 03:01 PM
Object Required aftamath Excel Discussion (Misc queries) 2 March 14th 06 10:19 PM
Object Required Al Excel Programming 0 May 31st 05 04:49 PM
Object required? Tony Excel Programming 2 March 22nd 05 04:52 PM
Object required. y Excel Programming 1 April 10th 04 10:50 AM


All times are GMT +1. The time now is 04:59 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"