#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 50
Default Locking cell

Good afternoon, is there a formula or condition formatting available to lock
cells if the font colour is specified?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,856
Default Locking cell

Short answer - No.

Pete

On Nov 1, 7:34 pm, whatzzup
wrote:
Good afternoon, is there a formula or condition formatting available to lock
cells if the font colour is specified?



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 477
Default Locking cell

Sub LockYellows()
Set MyRange = Range("B10:D20")
For Each c In MyRange
If c.Interior.ColorIndex = 6 Then
c.Locked = True
End If
Next c
Set MyRange = Nothing
End Sub

"whatzzup" wrote:

Good afternoon, is there a formula or condition formatting available to lock
cells if the font colour is specified?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
locking only one cell AJB Excel Discussion (Misc queries) 2 August 17th 07 09:40 AM
locking formula in cells in without locking whole sheet SuziQ Excel Discussion (Misc queries) 1 July 21st 06 03:58 PM
Dynamically locking a cell depending upon value of another cell. Pank Excel Discussion (Misc queries) 0 May 12th 06 11:48 AM
Locking a cell John Excel Worksheet Functions 1 December 17th 05 01:04 PM
Cell locking trouble Jeffery Tyree Excel Discussion (Misc queries) 4 November 22nd 05 05:27 PM


All times are GMT +1. The time now is 01:10 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"