Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default RANGE in VBA


I tried to use VBA to copy a range of data then paste it into anothe
worksheet. The problem is that I create the target (to be copied) rang
in INSERT---NAME---DEFINE, or a dynamic range. How can I use VBA t
possibly select the dynamic range?

Thanks a lot,

Jasons :rolleyes

--
Jason
-----------------------------------------------------------------------
Jasons's Profile: http://www.excelforum.com/member.php...fo&userid=1610
View this thread: http://www.excelforum.com/showthread.php?threadid=31379

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default RANGE in VBA

worksheets("sheet2").Range("A1:A10").Name = "MyName"

application.Goto Range("MyName"), True

might be what you want.

however, if I wanted to copy something I would do

Worksheets("Sheet1").Range("J11:J20").copy _
Destination:=Range("MyName")


Without doing any selecting.
--
Regards,
Tom Ogilvy

"Jasons" wrote in message
...

I tried to use VBA to copy a range of data then paste it into another
worksheet. The problem is that I create the target (to be copied) range
in INSERT---NAME---DEFINE, or a dynamic range. How can I use VBA to
possibly select the dynamic range?

Thanks a lot,

Jasons


--
Jasons
------------------------------------------------------------------------
Jasons's Profile:

http://www.excelforum.com/member.php...o&userid=16108
View this thread: http://www.excelforum.com/showthread...hreadid=313797



  #3   Report Post  
Posted to microsoft.public.excel.programming
No Name
 
Posts: n/a
Default RANGE in VBA

Application.Goto Reference:="rangename"
Selection.copy
go.to.the.other.sheet
Selection.pastespecial xlall

-----Original Message-----

I tried to use VBA to copy a range of data then paste it

into another
worksheet. The problem is that I create the target (to be

copied) range
in INSERT---NAME---DEFINE, or a dynamic range. How can I

use VBA to
possibly select the dynamic range?

Thanks a lot,

Jasons


--
Jasons
----------------------------------------------------------

--------------
Jasons's Profile: http://www.excelforum.com/member.php?

action=getinfo&userid=16108
View this thread:

http://www.excelforum.com/showthread...hreadid=313797

.

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
How do I enter formula sum(range+range)*0.15 sumif(range=3) tkw Excel Discussion (Misc queries) 2 October 1st 09 09:17 PM
Excel Addin:Setting the range to the Excel.Range object range prop Rp007 Excel Worksheet Functions 5 November 24th 06 04:30 PM
How to count dates within a certain range in a column with mutiple date range entries Krisjhn Excel Worksheet Functions 2 September 1st 05 01:59 PM
Range.Find returns cell outside of range when range set to single cell Frank Jones Excel Programming 12 June 10th 04 04:22 AM
how to? set my range= my UDF argument (range vs. value in range) [advanced?] Keith R[_3_] Excel Programming 2 August 11th 03 05:55 PM


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