|
-
Apr 13th, 2003, 09:10 PM
#1
Thread Starter
Lively Member
Pls Pls Pls pls Help.Urgent ..!!Thanks ALOT!!
I'm creating arrows dynamically in excel. Whenever I click an arrow, it brings me to another sheet where I would display a certain information. I had a help on this:
PHP Code:
Dim shtTarget As Worksheet
Set shtTarget = Sheets("TTview")
With Selection
'you can find the start and endcell here
'highlight the cells in shttarget that need to be selected
End With
Range("A1").Select 'set the focus of the line
I want to find the value(NOT THE CELL RANGE BUT THE CONTENTS), that is from where to where it is pointing.I want to put it in the With Selection block(as above).Pls help.(AGAIN NOT THE CELL RANGE,EG ("A2")...I WANT THE CONTENTS OF ("A2"))Thanks
Last edited by ITboy; Apr 16th, 2003 at 04:33 AM.
-
Apr 17th, 2003, 04:56 AM
#2
Rather than calling on the Range("A1").Select method to grab the cell, you can call the Range("A1").Value to grab the cell's text if I understand your question correctly ....
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
|