View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
T. Valko T. Valko is offline
external usenet poster
 
Posts: 15,768
Default Conditional Formatting

You can use data validation but it has limitations.

Assume you don't want to allow an entry in cell B1 until there is an entry
in cell A1.

Select cell B1
Goto the menu DataValidation
Allow: Custom
Formula: =COUNTA(A1)
OK

Limitations:

It's possible to copy/paste into cell B1
It's possible to drag-n-drop into cell B1
If there's an entry in cell A1 then cell B1 will accept an entry. However,
if the entry is deleted in cell A1 the entry remains in cell B1.



--
Biff
Microsoft Excel MVP


"GMc" wrote in message
...
Is there any way to conditionally block data entry to a cell (lock it)
until data is entered in other cells. Once data has been entered into
the pre-quailifying cells I want to open up the locked cell to allow
data entry.

Thanks GMc