Forum Discussion

Chan_Tze_Leong's avatar
Chan_Tze_Leong
Brass Contributor
May 11, 2021
Solved

Excel Macro

I have created 2 Name Managers i.e opex (blue colour) and mtd (green). Using a macro, I would like to unlock these areas (Name manager) and lock the rest (other cells) so that users can key in their ...
  • HansVogelaar's avatar
    May 11, 2021

    Chan_Tze_Leong 

    For example:

    Sub UnlockNamedRanges()
        Cells.Locked = True
        Range("opex").Locked = False
        Range("mtd").Locked = False
        ActiveSheet.Protect ' Password:="secret"
    End Sub