Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8884233
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T21:01:04+00:00 2026-06-14T21:01:04+00:00

This seems like it should be a simple problem but I’ve been unable to

  • 0

This seems like it should be a simple problem but I’ve been unable to solve it. I have a program I’m writing where the user is babied through these steps:

Step 1: Go to another spreadsheet and copy the content
Step 2: Come back to my spreadsheet and press a button to paste that content

When they press my button it needs to unlock the current sheet and paste the data without any of the formatting. This is what I have:

ActiveWorkbook.ActiveSheet.Unprotect
Range("A1").Select
Selection.PasteSpecial Paste:=xlPasteValues, _
                       Operation:=xlNone, _
                       SkipBlanks:=False, _
                       Transpose:=False

So it works perfectly if I don’t do the “Unprotect” line, but I’m trying to stop people from pasting the data without using my button.

I know that the issue is something to do with clipboard content being lost when I unprotect the sheet but the methods I’ve used to retain that content aren’t working, namely:

  • Lib User32 – OpenClipboard and CloseClipboard
  • DataObject – GetFromClipboard, PutInClipboard

Curiously, it works perfectly if I debug the VBA and step through line by line?!?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T21:01:04+00:00Added an answer on June 14, 2026 at 9:01 pm

    Okay, I’ve solved it (but someone may have a better solution). I believe the problem was that when I used the DataObject method of keeping the clipboard contents it stripped the formatting and so it couldn’t PasteSpecial, that’s actually fine with me because I’m only after the data anyway! With that in mind, this seems to work:

    Dim dClipBoard As MsForms.DataObject
    Dim sClipBoard As String
    Set dClipBoard = New MsForms.DataObject
    dClipBoard.GetFromClipboard
    sClipBoard = dClipBoard.GetText
    ActiveWorkbook.ActiveSheet.Unprotect
    Set dClipBoard = New MsForms.DataObject
    dClipBoard.SetText sClipBoard
    dClipBoard.PutInClipboard
    Range("A1").Select
    ActiveSheet.Paste
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

This seems like it should be really simple, but I'm unable to figure this
This seems like it should be so simple, but apparently it isn't. I have
I have what seems like it should be a really simple problem, but somehow
This seems like it should be a well known problem, but I haven't been
This seems like it should be very simple but I can't get it to
Seems like this should be simple, but powershell is winning another battle with me.
This feels like it should be pretty simple, but not much seems to be
This seems like a simple problem but I can't seem to find the answer.
This seems like it should be fairly simple, but for some reason I can't
ok it seems like a simple problem, but i am having problem I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.