Super! That does just fine. I wonder if there is a way to move the Paste
Value up from the bottom to just below the Past Special item? No big deal
if it can't be none.
Thanks again very much.
> You could add it to right-click menu if you choose.
>
[quoted text clipped - 45 lines]
>>>>
>>>>Thank you.
Try this
With Application.CommandBars("Cell").Controls.Add(, , , 5, (temporary))
.Caption = "Paste Values"
.OnAction = "Paste_Values"
End With
See help Controls.Add to suss out the ", , , 5"
Numbers 1 through wharever is the position number of default items on the menu.
You are adding the item to number 5 position just under number 4 which is Paste
Special
Gord
>Super! That does just fine. I wonder if there is a way to move the Paste
>Value up from the bottom to just below the Past Special item? No big deal
[quoted text clipped - 51 lines]
>>>>>
>>>>>Thank you.
Jack Gillis - 08 Mar 2008 22:38 GMT
Perfect! Thanks again.
> Try this
>
[quoted text clipped - 74 lines]
>>>>>>
>>>>>>Thank you.