Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default Range question w/VB

With the following macro (copied from this usenet, modified & working
thank you) is there a way the row number (in this example 771) updates
automatically when I manually add rows between 3 & 771.

******************
Dim rng As Range, i As Long
Dim lastrow As Long
With Worksheets("Sheet1")
Set rng = .Range(.Cells(3, 2), .Cells(771, 2).End(xlUp))
End With
With Worksheets("Sheet3")
lastrow = .Cells(Rows.Count, 1).End(xlUp).Row
For i = lastrow To 1 Step -1
If Application.CountIf(rng, .Cells(i, 1)) < 0 Then
.Rows(i).Delete
End If
Next i
End With
*********************

TIA

Ron
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 510
Default Range question w/VB

Hi Ron,

I would replace Set rng by the following :
Set rng=.Range("B3:B" & Range("A65536").End(xlUp).Row)

HTH
Cheers
Carim

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 14
Default Range question w/VB

Hi Carim,

Thanks for the reply...

I have populated cells in B2000:B3000 that when read give a false
result to the macro.

Cheers

Ron




On 25 Mar 2006 07:19:17 -0800, "Carim" wrote:

Hi Ron,

I would replace Set rng by the following :
Set rng=.Range("B3:B" & Range("A65536").End(xlUp).Row)

HTH
Cheers
Carim

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 26
Default Range question w/VB

What about Range("B1999").End(xlUp).Row) ?

Alternatively, put something in an empty column on line 771. Then use
the last populated row of that column.


--
Gordon Rainsford

London UK

Ron wrote:

Hi Carim,

Thanks for the reply...

I have populated cells in B2000:B3000 that when read give a false
result to the macro.

Cheers

Ron




On 25 Mar 2006 07:19:17 -0800, "Carim" wrote:

Hi Ron,

I would replace Set rng by the following :
Set rng=.Range("B3:B" & Range("A65536").End(xlUp).Row)

HTH
Cheers
Carim


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
Range Question / error 1004: method Range of object Worksheet has failed Paul Excel Programming 3 April 7th 05 02:56 PM
range question CG Rosén Excel Programming 2 November 26th 04 02:21 PM
Range question strataguru[_19_] Excel Programming 2 September 25th 04 12:57 AM
Used Range Question a Excel Programming 2 May 26th 04 03:45 AM
Range.Formula and Range question using Excel Automation [email protected] Excel Programming 0 September 19th 03 04:53 AM


All times are GMT +1. The time now is 08:58 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"