|
-
Jan 23rd, 2002, 02:59 PM
#1
Thread Starter
Fanatic Member
Excel Dynamic range ?
I have seen this done somewhere..
Can i have a a range object that will grow with my expanding
list..
like myrange = range c3 to range EOF
??
That is all
Seahag
-
Jan 23rd, 2002, 03:04 PM
#2
Hyperactive Member
Select the top of your range
using: Range("A1").Select (or something)
Then this is like pressing end and the down arrow:
Selection.End(xlDown).Select
You may need to add to the front of these commands a qualifier.. this code was taken right out of excel vba..
try.. objExcel.ActiveDocument.Selection.End(xlDown).Select
-mcd
[vbcode]
'*****************************
MsgBox "MCD :: [email protected]", vbInformation + vbOKOnly, "User"
'*****************************
[/vbcode]
-
Jan 23rd, 2002, 03:26 PM
#3
Thread Starter
Fanatic Member
Cant get that to work..
Selection is a word.. thinggy..
I seen a real nifty way of doing it.. cant believe
I didn`t save it..
Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|