+ Reply to Thread
Results 1 to 6 of 6

Shortcut key

  1. #1
    Steph
    Guest

    Shortcut key

    Is there a way to assign a shortcut key stroke (like Ctl Z) to Paste
    Special/Values?



  2. #2
    Ron de Bruin
    Guest

    Re: Shortcut key

    Hi Steph

    You can make your own macro and assign a shortcut key or add the button
    to your toolbar manual or with code.

    View>toolbars...Customize on the edit list a icon with 12 in it
    Drag it to your toolbar

    --
    Regards Ron de Bruin
    http://www.rondebruin.nl


    "Steph" <noreply@noreply.com> wrote in message news:%23K9U4XChGHA.4712@TK2MSFTNGP05.phx.gbl...
    > Is there a way to assign a shortcut key stroke (like Ctl Z) to Paste Special/Values?
    >




  3. #3
    David McRitchie
    Guest

    Re: Shortcut key

    Example of a macro to use
    http://www.mvps.org/dmcritchie/excel/paste.htm#values

    The actual code is one line, the rest is for error checking

    Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, _
    SkipBlanks:=False, Transpose:=False


    ---
    HTH,
    David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
    My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
    Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

    "Ron de Bruin" <rondebruin@kabelfoon.nl> wrote in message news:ehClWcChGHA.1208@TK2MSFTNGP02.phx.gbl...
    > Hi Steph
    >
    > You can make your own macro and assign a shortcut key or add the button
    > to your toolbar manual or with code.
    >
    > View>toolbars...Customize on the edit list a icon with 12 in it
    > Drag it to your toolbar
    >
    > --
    > Regards Ron de Bruin
    > http://www.rondebruin.nl
    >
    >
    > "Steph" <noreply@noreply.com> wrote in message news:%23K9U4XChGHA.4712@TK2MSFTNGP05.phx.gbl...
    > > Is there a way to assign a shortcut key stroke (like Ctl Z) to Paste Special/Values?
    > >

    >
    >




  4. #4
    Ron de Bruin
    Guest

    Re: Shortcut key

    And if you want it in the cell contex menu run this one time

    This example will add the Paste Special values button to the Cell menu after the Paste option.


    Sub Add_Paste_Special_Button()
    ' This will add the Paste Special values button to the cell menu
    ' after the Paste option
    Dim Num As Long
    Num = Application.CommandBars("Cell"). _
    FindControl(ID:=755).Index
    Application.CommandBars("cell").Controls. _
    Add Type:=msoControlButton, ID:=370, before:=Num
    End Sub


    Sub Delete_Paste_Special_Button()
    On Error Resume Next
    Application.CommandBars("cell").FindControl(ID:=370).Delete
    On Error GoTo 0
    End Sub




    --
    Regards Ron de Bruin
    http://www.rondebruin.nl


    "David McRitchie" <dmcritchie_xlmvp@verizon.net> wrote in message news:uGHwQiChGHA.1856@TK2MSFTNGP03.phx.gbl...
    > Example of a macro to use
    > http://www.mvps.org/dmcritchie/excel/paste.htm#values
    >
    > The actual code is one line, the rest is for error checking
    >
    > Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, _
    > SkipBlanks:=False, Transpose:=False
    >
    >
    > ---
    > HTH,
    > David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
    > My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
    > Search Page: http://www.mvps.org/dmcritchie/excel/search.htm
    >
    > "Ron de Bruin" <rondebruin@kabelfoon.nl> wrote in message news:ehClWcChGHA.1208@TK2MSFTNGP02.phx.gbl...
    >> Hi Steph
    >>
    >> You can make your own macro and assign a shortcut key or add the button
    >> to your toolbar manual or with code.
    >>
    >> View>toolbars...Customize on the edit list a icon with 12 in it
    >> Drag it to your toolbar
    >>
    >> --
    >> Regards Ron de Bruin
    >> http://www.rondebruin.nl
    >>
    >>
    >> "Steph" <noreply@noreply.com> wrote in message news:%23K9U4XChGHA.4712@TK2MSFTNGP05.phx.gbl...
    >> > Is there a way to assign a shortcut key stroke (like Ctl Z) to Paste Special/Values?
    >> >

    >>
    >>

    >
    >




  5. #5
    Jeff Standen
    Guest

    Re: Shortcut key

    Alt E S V Enter works for me

    Jeff

    "Steph" <noreply@noreply.com> wrote in message
    news:%23K9U4XChGHA.4712@TK2MSFTNGP05.phx.gbl...
    > Is there a way to assign a shortcut key stroke (like Ctl Z) to Paste
    > Special/Values?
    >




  6. #6
    David McRitchie
    Guest

    Re: Shortcut key

    Hi Steph,
    You can create an equivalent macro and assign it a shortcut key.
    http://www.mvps.org/dmcritchie/excel/paste.htm#values
    ---
    HTH,
    David McRitchie, Microsoft MVP - Excel [site changed Nov. 2001]
    My Excel Pages: http://www.mvps.org/dmcritchie/excel/excel.htm
    Search Page: http://www.mvps.org/dmcritchie/excel/search.htm

    "Jeff Standen" <jeff@work.com> wrote in message news:OaJsb3XhGHA.2208@TK2MSFTNGP05.phx.gbl...
    > Alt E S V Enter works for me
    >
    > Jeff
    >
    > "Steph" <noreply@noreply.com> wrote in message
    > news:%23K9U4XChGHA.4712@TK2MSFTNGP05.phx.gbl...
    > > Is there a way to assign a shortcut key stroke (like Ctl Z) to Paste
    > > Special/Values?
    > >

    >
    >




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1