Good afternoon DCSwearingen
Something like the below will allow you to add a contect sensitive right click menu into the "cells" event, and add a paste special option. Out of interest, what version of Excel do you use - I use XL2003 and that already has such an option present.
Sub NewItem()
Dim PS As CommandBarControl
Set PS = CommandBars("Cell").Controls.Add
With PS
.Caption = "Paste Special"
.OnAction = "PS"
.BeginGroup = True
End With
End Sub
Sub PS()
Selection.PasteSpecial Paste:=xlPasteValues
End Sub
Sub RemoveItem()
On Error Resume Next
CommandBars("Cell").Controls("Paste Special").Delete
End Sub
HTH
DominicB
Bookmarks