What does the "Paste Special Dropdown" popup menu do?

  • Thread starter Thread starter R Avery
  • Start date Start date
R

R Avery

Sub dslghlkshgl()
Dim CB As CommandBar, i As Long

i = 5
For Each CB In CommandBars
If CB.Type = msoBarTypePopup Then
Debug.Print CB.Name
CB.ShowPopup
'Sleep 3000
'Cells(i, 1) = CB.Name
i = i + 1
End If
Next
End Sub
 
Try this:

Copy a cell.
Now find the Paste Icon on the standard toolbar (looks like a clipboard).

There's a dropdown arrow next to this icon (new in xl2002????).

Click on that dropdown arrow and you'll see some choices you get via this popup.
 
Thanks!

Dave said:
Try this:

Copy a cell.
Now find the Paste Icon on the standard toolbar (looks like a clipboard).

There's a dropdown arrow next to this icon (new in xl2002????).

Click on that dropdown arrow and you'll see some choices you get via this popup.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top