Shortcut key for 'Transpose'

miroj1

Board Regular
Joined
May 6, 2002
Messages
52
Hello Excel Wizards.
My co-worker wants to know what the shortcut key is for the command Transpose and/or 'Paste Special'

I was also wondering how one programs different commands for shortcut keys.

Thanks a lot,
Roj
 

Excel Facts

Do you hate GETPIVOTDATA?
Prevent GETPIVOTDATA. Select inside a PivotTable. In the Analyze tab of the ribbon, open the dropown next to Options and turn it off
I don't believe that there are any built-in shortcut keys for these commands. The best you're going to get is a key-combo for Transpose:

1. ALT + e
2. s
3. ALT + e
4. <RETURN>

I think this will also invoke the "Special Combo Death Move Finish" as well.

HTH
 
Upvote 0
Not really a shortcut key, but I find it works as fast:

ALT + e + s (for "Paste Special" dialog box)

ALT + e + s + e then hit return (for transpose)
 
Upvote 0
On 2002-08-26 14:23, shades wrote:
Not really a shortcut key, but I find it works as fast:

ALT + e + s (for "Paste Special" dialog box)

ALT + e + s + e then hit return (for transpose)

consider creating your own shortcut key

create a macro that does what you want
(try macro recorder)

and then assign a shortcut key combination to the macro.

One macro that I use follows
Sub PasteValue()
'
' PasteValue Macro
' Copy selection and Paste as Value Ctrl-Shift-v
'
' Keyboard Shortcut: Ctrl+Shift+V
'
With Selection
.Copy
.PasteSpecial Paste:=xlValues, Operation:=xlNone, SkipBlanks:= _
False, Transpose:=False
End With
Application.CutCopyMode = False
End Sub



HTH Dave
This message was edited by Dave Patton on 2002-08-26 15:21
 
Upvote 0

Forum statistics

Threads
1,213,538
Messages
6,114,218
Members
448,554
Latest member
Gleisner2

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top