Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 15
Default Clipboard Data Within Macro

Is there a way to use data a user saved in the clipboard
prior to running my macro. Or, is there a way to prompt
the user to select a range of data to copy to the
clipboard.

I attempted to use the InputBox Method with a Type:=8
setting but I get an error when I attempt to set the
return value to a variable which I declared as being of
type Range, and then try to select that range. The
specific error I get is "Run-Time error '1004'
Method 'Range' of object '_Global' failed.

------------------------
Dim Data_Copy_Range As Range

Set Data_Copy_Range = Application.InputBox(prompt:="Enter
copy range.", Type:=8)

Range(Data_Copy_Range).Select
------------------------

Please Help?
Phil
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 117
Default Clipboard Data Within Macro

Take a look at Chip Pearson's article
http://www.cpearson.com/excel/clipboar.htm

Steve

"Phil" wrote in message
...
Is there a way to use data a user saved in the clipboard
prior to running my macro. Or, is there a way to prompt
the user to select a range of data to copy to the
clipboard.

I attempted to use the InputBox Method with a Type:=8
setting but I get an error when I attempt to set the
return value to a variable which I declared as being of
type Range, and then try to select that range. The
specific error I get is "Run-Time error '1004'
Method 'Range' of object '_Global' failed.

------------------------
Dim Data_Copy_Range As Range

Set Data_Copy_Range = Application.InputBox(prompt:="Enter
copy range.", Type:=8)

Range(Data_Copy_Range).Select
------------------------

Please Help?
Phil



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 459
Default Clipboard Data Within Macro

You object variable Data_Copy_Range points to the chosen range, so the
line of code should be:

Data_Copy_Range.Select

Note Chip Pearson's excellent code to which Steve refers is for
copying text rather than an Excel Range to the clipboard, so isn't
appropriate here.

"Steve Yandl" wrote in message ...
Take a look at Chip Pearson's article
http://www.cpearson.com/excel/clipboar.htm

Steve

"Phil" wrote in message
...
Is there a way to use data a user saved in the clipboard
prior to running my macro. Or, is there a way to prompt
the user to select a range of data to copy to the
clipboard.

I attempted to use the InputBox Method with a Type:=8
setting but I get an error when I attempt to set the
return value to a variable which I declared as being of
type Range, and then try to select that range. The
specific error I get is "Run-Time error '1004'
Method 'Range' of object '_Global' failed.

------------------------
Dim Data_Copy_Range As Range

Set Data_Copy_Range = Application.InputBox(prompt:="Enter
copy range.", Type:=8)

Range(Data_Copy_Range).Select
------------------------

Please Help?
Phil

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
can't paste from clipboard in my macro LAMA Excel Discussion (Misc queries) 1 January 25th 10 08:15 PM
Macro to check if clipboard is blank. Mr. Clean Excel Discussion (Misc queries) 1 February 12th 09 05:34 PM
use macro to set auto( about clipboard ) Wu Excel Discussion (Misc queries) 2 May 25th 08 05:43 PM
macro to respond to clipboard prompt? gary Excel Programming 4 September 15th 03 03:59 AM
Disable Clipboard Dialog Box during Macro Tom Excel Programming 0 August 15th 03 04:52 PM


All times are GMT +1. The time now is 03:21 AM.

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

About Us

"It's about Microsoft Excel"