Hi guys, I recorded this super simple macro below to make the paste special function in Excel faster to do. This only seems to work within a workbook, though, and does not work when the source and destination workbooks are different. Any hints on how I could acheive that functionality? Thanks.
Attribute VB_Name = "Module1"
Sub paste_value()
Attribute paste_value.VB_Description = "Macro recorded 5/7/2004 by achan"
Attribute paste_value.VB_ProcData.VB_Invoke_Func = "w\n14"
'
' paste_value Macro
' Macro recorded 5/7/2004 by achan
'
' Keyboard Shortcut: Ctrl+w
'
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub
Attribute VB_Name = "Module1"
Sub paste_value()
Attribute paste_value.VB_Description = "Macro recorded 5/7/2004 by achan"
Attribute paste_value.VB_ProcData.VB_Invoke_Func = "w\n14"
'
' paste_value Macro
' Macro recorded 5/7/2004 by achan
'
' Keyboard Shortcut: Ctrl+w
'
Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _
:=False, Transpose:=False
End Sub