+ Reply to Thread
Results 1 to 5 of 5

Excel 2007 : Lock cells with IF formula

Hybrid View

pansovic Lock cells with IF formula 05-03-2011, 05:57 PM
Richard Buttrey Re: Lock cells with IF formula 05-03-2011, 06:27 PM
pansovic Re: Lock cells with IF formula 08-30-2011, 01:17 AM
royUK Re: Lock cells with IF formula 08-30-2011, 02:26 AM
pansovic Re: Lock cells with IF formula 08-31-2011, 10:20 AM
  1. #1
    Forum Contributor
    Join Date
    05-19-2009
    Location
    Santiago, Chile
    MS-Off Ver
    Excel 2019
    Posts
    212

    Lock cells with IF formula

    Is it possible that I lock cells based on the outcome of a formula? For example I have a formula in cell A1 and when the results is 5 than cell is blocked and nobody can change it but when the result is for example 8 than you can overwrite the formula.

  2. #2
    Forum Moderator - RIP Richard Buttrey's Avatar
    Join Date
    01-14-2008
    Location
    Stockton Heath, Cheshire, UK
    MS-Off Ver
    Office 365, Excel for Windows 2010 & Excel for Mac
    Posts
    29,464

    Re: Lock cells with IF formula

    Hi,

    The first point to bear in mind is that to lock cells you also have to have sheet protection switched on.

    You can't lock or unlock cells with a formula but you could use the Sheet Change event
    i.e.

    Private Sub Worksheet_Change(ByVal Target As Range)
        Sheet1.Unprotect
        If Range("A1") = 5 Then
            Range("A1").Locked = True
        Else
            Range("A1").Locked = False
        End If
        Sheet1.Protect
    End Sub
    Obviously you are going to have to unlock the cells which provide values for the A1 formula.

    Regards
    Richard Buttrey

    RIP - d. 06/10/2022

    If any of the responses have helped then please consider rating them by clicking the small star icon below the post.

  3. #3
    Forum Contributor
    Join Date
    05-19-2009
    Location
    Santiago, Chile
    MS-Off Ver
    Excel 2019
    Posts
    212

    Re: Lock cells with IF formula

    Sorry for the (very) late reply though had to travel a lot and only now am back in "Excel mind".
    I really have a problem with protecting my data. You suggested above that I need to switch on Sheet protection. Though than I can no longer us macro. I have a macro that insert me a line copying all the formulas of the above line with "ctrl+F"
    So than I opt for Sharing the document so that at least I can see what others are doing but neither that is working as that I am using Pivot table.

    Is there really no way that I can protect all my formulas and data?

  4. #4
    Forum Expert royUK's Avatar
    Join Date
    11-18-2003
    Location
    Derbyshire,UK
    MS-Off Ver
    Xp; 2007; 2010
    Posts
    26,200

    Re: Lock cells with IF formula

    If I follow what you are saying then your macro needs to unprotect the sheet, perform it's functions the re-protect the sheet as the example code does
    Hope that helps.

    RoyUK
    --------
    For Excel Tips & Solutions, free examples and tutorials why not check out my web site

    Free DataBaseForm example

  5. #5
    Forum Contributor
    Join Date
    05-19-2009
    Location
    Santiago, Chile
    MS-Off Ver
    Excel 2019
    Posts
    212

    Re: Lock cells with IF formula

    Using your code I receive error message and marked in yellow is "Sheet1.Unprotect". I already changed Sheet1 by name of the sheet though same error. My Excel version is Spanish though I have used other codes in English and they do are 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