Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Conditional Formatting

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
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
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



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Conditional Formatting

On May 23, 3:40*pm, "T. Valko" wrote:
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- Hide quoted text -


- Show quoted text -


Biff et al.,

The cell I wish to "lock" already has a data validation parameter
(forcing an input of a date between a range of dates). Is there any
way to have 2 validations on the same cell ?

Thanks

Grant
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Conditional Formatting

You might be able to consolidate both conditions in a single formula.

=AND(COUNTA(A1),B1=DATE(2008,1,1),B1<=DATE(2008,1 ,31))

--
Biff
Microsoft Excel MVP


"GMc" wrote in message
...
On May 23, 3:40 pm, "T. Valko" wrote:
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- Hide quoted text -


- Show quoted text -


Biff et al.,

The cell I wish to "lock" already has a data validation parameter
(forcing an input of a date between a range of dates). Is there any
way to have 2 validations on the same cell ?

Thanks

Grant


  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10
Default Conditional Formatting

On May 28, 10:45*pm, "T. Valko" wrote:
You might be able to consolidate both conditions in a single formula.

=AND(COUNTA(A1),B1=DATE(2008,1,1),B1<=DATE(2008,1 ,31))

--
Biff
Microsoft Excel MVP

"GMc" wrote in message

...
On May 23, 3:40 pm, "T. Valko" wrote:





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- Hide quoted text -


- Show quoted text -


Biff et al.,

The cell I wish to "lock" already has a data validation parameter
(forcing an input of a date between a range of dates). Is there any
way to have 2 validations on the same cell ?

Thanks

Grant- Hide quoted text -

- Show quoted text -


Biff, Thanks again, the AND function works for me. much appreciated.
Grant


  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 15,768
Default Conditional Formatting

You're welcome. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"GMc" wrote in message
...
On May 28, 10:45 pm, "T. Valko" wrote:
You might be able to consolidate both conditions in a single formula.

=AND(COUNTA(A1),B1=DATE(2008,1,1),B1<=DATE(2008,1 ,31))

--
Biff
Microsoft Excel MVP

"GMc" wrote in message

...
On May 23, 3:40 pm, "T. Valko" wrote:





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- Hide quoted text -


- Show quoted text -


Biff et al.,

The cell I wish to "lock" already has a data validation parameter
(forcing an input of a date between a range of dates). Is there any
way to have 2 validations on the same cell ?

Thanks

Grant- Hide quoted text -

- Show quoted text -


Biff, Thanks again, the AND function works for me. much appreciated.
Grant


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
Formatting cells in a column with conditional formatting? shamor Excel Discussion (Misc queries) 8 May 19th 08 10:11 PM
Protect Cell Formatting including Conditional Formatting Mick Jennings Excel Discussion (Misc queries) 5 November 13th 07 05:32 PM
conditional Formatting based on cell formatting Totom Excel Worksheet Functions 3 January 20th 07 02:02 PM
conditional Formatting based on cell formatting Totom Excel Worksheet Functions 0 January 15th 07 04:35 PM
Conditional Formatting that will display conditional data BrainFart Excel Worksheet Functions 1 September 13th 05 05:45 PM


All times are GMT +1. The time now is 07:09 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"