+ Reply to Thread
Results 1 to 5 of 5

VBA error - Unble to set the Locked property of the Range class

  1. #1
    Forum Contributor
    Join Date
    01-21-2010
    Location
    Glasgow
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    105

    VBA error - Unble to set the Locked property of the Range class

    Hi all,

    I am having trouble with a macro for unprotecting a sheet keeping specific cells locked then clearing contents of other cells then reproect the sheet.

    I wrote one for one sheet which works and I have re used this but it keeps saying Unable to set the Locked property of the Range class.

    Can anyone see what I've done wrong?

    Please Login or Register  to view this content.
    The code that worked is:
    Please Login or Register  to view this content.
    I don't know why it works with one sheet and not the other.

    All help gratefully recieved.


    I have attached the sheet in case its something on the sheet rather than the code,

    Thanks again
    Attached Files Attached Files

  2. #2
    Forum Expert romperstomper's Avatar
    Join Date
    08-13-2008
    Location
    England
    MS-Off Ver
    365, varying versions/builds
    Posts
    21,980

    Re: VBA error - Unble to set the Locked property of the Range class

    Try this version, which fully qualifies the references:
    Please Login or Register  to view this content.
    Everyone who confuses correlation and causation ends up dead.

  3. #3
    Forum Moderator Leith Ross's Avatar
    Join Date
    01-15-2005
    Location
    San Francisco, Ca
    MS-Off Ver
    2000, 2003, & 2010
    Posts
    23,259

    Re: VBA error - Unble to set the Locked property of the Range class

    Hello Libster78,

    When using the With stement, you need to be mindful of periods before properties and methods of the object With refers to. There is period missing before cells. Without the period, the ActiveSheet is assumed to be the object of reference.
    Please Login or Register  to view this content.
    Sincerely,
    Leith Ross

    Remember To Do the Following....

    1. Use code tags. Place [CODE] before the first line of code and [/CODE] after the last line of code.
    2. Thank those who have helped you by clicking the Star below the post.
    3. Please mark your post [SOLVED] if it has been answered satisfactorily.


    Old Scottish Proverb...
    Luathaid gu deanamh maille! (Rushing causes delays!)

  4. #4
    Forum Contributor
    Join Date
    01-21-2010
    Location
    Glasgow
    MS-Off Ver
    Excel 2003 and 2007
    Posts
    105

    Smile Solved! VBA error - Unble to set the Locked property of the Range class

    Thank you so much. I have been trying to do that all day.

    Its working perfectly now.

  5. #5
    Registered User
    Join Date
    02-12-2013
    Location
    Bucharest, Romania
    MS-Off Ver
    Excel 2010
    Posts
    9

    Re: VBA error - Unble to set the Locked property of the Range class

    Here is the solution. I am a beginner with VBA and far far far from being a Guru. But I had the same problem and spend 2 days over the internet to find the solution. It has something to do with Merged Cells (Excel which is a product of Microsoft - a corporation who does not give a ***** about its clients) did not bother to tell anybody about the merged cell problem.
    Well I used to have
    .Range("D4").Locked = True Which gave me a 1004 error continuosly
    Now I changed it to
    .Range("D4").MergeArea.Locked = True and it is working !!!!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1