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

Hi! I am trying to enforce selection from a list (Range1) in column D when
the value in column c is equal to "Hello", if the value in column c does not
equal "Hello" I want the user to be able to type in whatever they want in
column D. I have pored through the newsgroup and not found anything relevant,
hence this question...Thanks...
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 10,593
Default Conditional Data Validation

Make sure that the C cell has the value Hello in it, then add this formula
to the DV type of List

=IF(C1="Hello",rng)

where rng is the range of your list

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Walt Herman" wrote in message
...
Hi! I am trying to enforce selection from a list (Range1) in column D when
the value in column c is equal to "Hello", if the value in column c does
not
equal "Hello" I want the user to be able to type in whatever they want in
column D. I have pored through the newsgroup and not found anything
relevant,
hence this question...Thanks...



  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Conditional Data Validation

Bob, thank you for your prompt response. I have already gotten that far. The
problem is when column C does not equal "Hello" I want the user to be able to
enter whatever they want in column D and validation seems to be enforcing ""

"Bob Phillips" wrote:

Make sure that the C cell has the value Hello in it, then add this formula
to the DV type of List

=IF(C1="Hello",rng)

where rng is the range of your list

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my addy)

"Walt Herman" wrote in message
...
Hi! I am trying to enforce selection from a list (Range1) in column D when
the value in column c is equal to "Hello", if the value in column c does
not
equal "Hello" I want the user to be able to type in whatever they want in
column D. I have pored through the newsgroup and not found anything
relevant,
hence this question...Thanks...




  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Conditional Data Validation

You have to follow Bob's directions, it does what you want.

--


Regards,


Peo Sjoblom


"Walt Herman" wrote in message
...
Bob, thank you for your prompt response. I have already gotten that far.
The
problem is when column C does not equal "Hello" I want the user to be able
to
enter whatever they want in column D and validation seems to be enforcing
""

"Bob Phillips" wrote:

Make sure that the C cell has the value Hello in it, then add this
formula
to the DV type of List

=IF(C1="Hello",rng)

where rng is the range of your list

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Walt Herman" wrote in message
...
Hi! I am trying to enforce selection from a list (Range1) in column D
when
the value in column c is equal to "Hello", if the value in column c
does
not
equal "Hello" I want the user to be able to type in whatever they want
in
column D. I have pored through the newsgroup and not found anything
relevant,
hence this question...Thanks...






  #5   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 12
Default Conditional Data Validation

It works if the next row of column C is blank as it will then allow you to
type text in freeform in column D. However, if there is any string in that
cell of column c the validation will disallow any other entry in column D. My
column C will always have text values in it and occasionally they will
contain "Hello" but more often than not they will not.

I appreciate your help nonetheless. Thanks.

You have to follow Bob's directions, it does what you want.

--


Regards,


Peo Sjoblom


"Walt Herman" wrote in message
...
Bob, thank you for your prompt response. I have already gotten that far.
The
problem is when column C does not equal "Hello" I want the user to be able
to
enter whatever they want in column D and validation seems to be enforcing
""

"Bob Phillips" wrote:

Make sure that the C cell has the value Hello in it, then add this
formula
to the DV type of List

=IF(C1="Hello",rng)

where rng is the range of your list

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Walt Herman" wrote in message
...
Hi! I am trying to enforce selection from a list (Range1) in column D
when
the value in column c is equal to "Hello", if the value in column c
does
not
equal "Hello" I want the user to be able to type in whatever they want
in
column D. I have pored through the newsgroup and not found anything
relevant,
hence this question...Thanks...








  #6   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 3,268
Default Conditional Data Validation

You are right, the reason it works is because it ignores blanks unless it is
unchecked. AFAIK you cannot fix this since you would be using conditions
which are opposite to each other

The condition to display the list is that C1 equals "Hello", then you cannot
also have a condition
that says something else. Meaning that validation block entries that return
FALSE so if C1 is not "Hello" but has some sort of entry the formula returns
FALSE thus blocking any other entry


--


Regards,


Peo Sjoblom




"Walt Herman" wrote in message
...
It works if the next row of column C is blank as it will then allow you to
type text in freeform in column D. However, if there is any string in that
cell of column c the validation will disallow any other entry in column D.
My
column C will always have text values in it and occasionally they will
contain "Hello" but more often than not they will not.

I appreciate your help nonetheless. Thanks.

You have to follow Bob's directions, it does what you want.

--


Regards,


Peo Sjoblom


"Walt Herman" wrote in message
...
Bob, thank you for your prompt response. I have already gotten that
far.
The
problem is when column C does not equal "Hello" I want the user to be
able
to
enter whatever they want in column D and validation seems to be
enforcing
""

"Bob Phillips" wrote:

Make sure that the C cell has the value Hello in it, then add this
formula
to the DV type of List

=IF(C1="Hello",rng)

where rng is the range of your list

--
HTH

Bob

(there's no email, no snail mail, but somewhere should be gmail in my
addy)

"Walt Herman" wrote in message
...
Hi! I am trying to enforce selection from a list (Range1) in column
D
when
the value in column c is equal to "Hello", if the value in column c
does
not
equal "Hello" I want the user to be able to type in whatever they
want
in
column D. I have pored through the newsgroup and not found anything
relevant,
hence this question...Thanks...








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
Conditional data validation. Dolphy Excel Discussion (Misc queries) 3 October 9th 07 05:04 AM
Data Validation & Conditional Formatting Shelly Excel Discussion (Misc queries) 3 December 22nd 06 08:23 PM
Conditional Data Validation Peter1999 Excel Discussion (Misc queries) 3 May 3rd 06 03:54 PM
conditional data validation RickS Excel Worksheet Functions 6 December 16th 05 01:11 PM
How do I use a conditional (IF) statement in Data Validation? LindaB Excel Worksheet Functions 3 August 13th 05 12:51 AM


All times are GMT +1. The time now is 03:21 AM.

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"