Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Ian Elliott
 
Posts: n/a
Default make paste values only a ctrl-key?

Thanks for any help.
I do paste values-only alot, and can I make this a control key? So when I do
ctrl-Z or some other key, it will paste value only whatever is in the
clipboard?
I looked in helpkeyboard shortcuts, but couldn't find anything about
setting keys.
Thanks

  #2   Report Post  
Dave Peterson
 
Posts: n/a
Default

First, ctrl-z is the shortcut for edit|undo. I wouldn't use that combo.

Saved from a previous post:

I think you had a workbook that contained a macro that had a shortcut that used
ctrl-shift-v to do the paste special. (I don't recall it ever being in excel.)

Instead of a workbook, macro, shortcut, you could add the paste special|values
icon to your favorite toolbar.

Tools|Customize|commands tab|Edit category
scroll down the commands list until you find that icon and drag it to your
toolbar.

If you really want the shortcut key, you could have a macro like this:

Be aware that with this (and most macros), the Edit|Undo feature will be lost.

If that's ok, then this worked ok for me:

Option Explicit
Sub PasteSpecialValues()

Dim myCtrl As CommandBarControl
Set myCtrl = Application.CommandBars.FindControl(ID:=370)

On Error Resume Next
myCtrl.Execute
If Err.Number < 0 Then
Beep
Err.Clear
End If

End Sub


Tools|macro|macros|options button
give it a nice shortcut (ctrl-shift-V??)

And put it in a workbook that is always opened when excel opens -- maybe
personal.xls in your XLStart folder (or any other workbook in that same XLStart
folder).

If you're new to macros, you may want to read David McRitchie's intro at:
http://www.mvps.org/dmcritchie/excel/getstarted.htm

Ian Elliott wrote:

Thanks for any help.
I do paste values-only alot, and can I make this a control key? So when I do
ctrl-Z or some other key, it will paste value only whatever is in the
clipboard?
I looked in helpkeyboard shortcuts, but couldn't find anything about
setting keys.
Thanks


--

Dave Peterson
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default make paste values only a ctrl-key?

Try using the Alt functions, "ctrl c" to copy then holding down "alt" press
"e" "s" "v" then enter.... mush easier and quicker

"Ian Elliott" wrote:

Thanks for any help.
I do paste values-only alot, and can I make this a control key? So when I do
ctrl-Z or some other key, it will paste value only whatever is in the
clipboard?
I looked in helpkeyboard shortcuts, but couldn't find anything about
setting keys.
Thanks

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 Copy and Paste or Paste Special between Excel Workbooks wllee Excel Discussion (Misc queries) 5 April 29th 23 03:43 AM
Make graphs in Excel all the same size ready to paste into Word - sub210 Charts and Charting in Excel 4 April 25th 23 11:47 AM
paste special values jenn Excel Worksheet Functions 2 February 3rd 05 01:45 AM
excel - numbers as text Thuferhawat New Users to Excel 12 January 24th 05 09:29 PM
Paste values ID GregR Excel Discussion (Misc queries) 1 December 13th 04 07:08 PM


All times are GMT +1. The time now is 04:09 PM.

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"