Home
Forums
New posts
Search forums
Articles
Latest reviews
Search resources
Members
Current visitors
Newsgroups
Log in
Register
What's new
Search
Search
Search titles only
By:
New posts
Search forums
Menu
Log in
Register
Install the app
Install
Home
Forums
Newsgroups
Microsoft Excel
Microsoft Excel Programming
Copying in sheet with protection with the use of a macro
JavaScript is disabled. For a better experience, please enable JavaScript in your browser before proceeding.
You are using an out of date browser. It may not display this or other websites correctly.
You should upgrade or use an
alternative browser
.
Reply to thread
Message
[QUOTE="Vacuum Sealed, post: 14093311"] Hi Swingleft You can do a google search for AllInternalPasswords.xls, it finds and removes protection. I have a protected WB/Sheet supplied by another company, I have my own version of it unprotected, I do my thing, then protect it when I am finished and save it the way they like it and send it on to them.. Something to ponder. Here is a snippet you can play with. Replace the Source** & Dest** references with your own... Windows("SourceWb.xls").Activate Sheets("SourceSh").Select Range("SourceRng").Select Selection.Copy Windows("DestWb.xls").Activate Range("DestCell").Select Selection.PasteSpecial Paste:=xlPasteValues, Operation:=xlNone, SkipBlanks _ :=False, Transpose:=False Application.CutCopyMode = False ActiveSheet.Protect Although, the Guru's will have a cleaner/faster way of copying the cells directly.. I'm nowhere near Guru status, and never likely to be, but it fun learning and helping others along the way.... Good luck HTH Mick [/QUOTE]
Verification
Post reply
Home
Forums
Newsgroups
Microsoft Excel
Microsoft Excel Programming
Copying in sheet with protection with the use of a macro
Top