Consulting

Results 1 to 3 of 3

Thread: Solved: macro to call "paste special"

  1. #1

    Solved: macro to call "paste special"

    I need help for a macro that can call this window (attached)



    Thanks,
    Attached Images Attached Images

  2. #2
    Knowledge Base Approver VBAX Wizard p45cal's Avatar
    Joined
    Oct 2005
    Location
    Surrey UK
    Posts
    5,881
    Either:
    [VBA]Application.Dialogs(xlDialogPasteSpecial).Show
    [/VBA]or [VBA]x = Application.Dialogs(xlDialogPasteSpecial).Show
    [/VBA]if you want to detect whether the user clicked Cancel.
    p45cal
    Everyone: If I've helped and you can't be bothered to acknowledge it, I can't be bothered to look at further posts from you.

  3. #3
    Thank you very much

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •