![]() |
#1
|
|||
|
|||
![]()
Hi, I'm a novice at VBA.
This is VBA code I'm using to change the formating in 2 cells based on the value in another cell. This code works fine when worksheet is not protected but the text formating and locking don't work when wkst is protected. Not sure what I've done wrong. Any help appreciated. Private Sub Steam_Option_Change() 'Trigger for locking second press and temp input cells Application.ScreenUpdating = False If Range("BC409").Value = True Then Range("AP33").Select ActiveCell.FormulaR1C1 = "'-- n/a --" Selection.Font.Bold = True Selection.Font.ColorIndex = 16 Selection.Locked = True Selection.FormulaHidden = False Range("AP34").Select ActiveCell.FormulaR1C1 = "'-- n/a --" Selection.Font.Bold = True Selection.Font.ColorIndex = 16 Selection.Locked = True Selection.FormulaHidden = False ElseIf Range("BC409").Value = False Then Range("AP33").Select Selection.ClearContents Selection.Font.Bold = False Selection.Font.ColorIndex = 0 Selection.Locked = False Selection.FormulaHidden = False Range("AP34").Select Selection.ClearContents Selection.Font.Bold = False Selection.Font.ColorIndex = 0 Selection.Locked = False Selection.FormulaHidden = False End If End Sub |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
![]() |
udea | Excel | 1 | 02-06-2012 07:43 PM |
![]() |
meggenm | Excel | 4 | 02-04-2012 02:04 AM |
![]() |
Platform | Mail Merge | 10 | 09-28-2011 05:12 AM |
Cell Comments in a Protected spreadsheet | dmgerber | Excel | 1 | 06-06-2010 05:10 AM |
click a cell to go to a worksheet | victor | Excel | 0 | 10-27-2006 02:57 PM |