Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.newusers
mz mz is offline
external usenet poster
 
Posts: 40
Default data validation for a single text entry

How can I create a data validation for a single text entry (i.e. to allow
leaving the cell blank or entering the word "Yes") without having to create a
list of the single entry (i.e. Yes). The other options in data validation
related to numbers, not text.
Thank you
--
MZ
  #2   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,276
Default data validation for a single text entry

Hi,
I assume I enter the word Yes in cell B1 then position in the cell you want
to apply data validation, go to data validation, custom and enter there the
formula as follow

=OR(A1=B1,A1="")

the above formula is validating data entered in A1

"MZ" wrote:

How can I create a data validation for a single text entry (i.e. to allow
leaving the cell blank or entering the word "Yes") without having to create a
list of the single entry (i.e. Yes). The other options in data validation
related to numbers, not text.
Thank you
--
MZ

  #3   Report Post  
Posted to microsoft.public.excel.newusers
CM CM is offline
external usenet poster
 
Posts: 136
Default data validation for a single text entry

Assuming your input cell is F10, In the data validation box -- choose Custom
and in the formula box put:

=OR(ISBLANK(F10)=TRUE,F10="Yes")


--
hope to help,
cm


"MZ" wrote:

How can I create a data validation for a single text entry (i.e. to allow
leaving the cell blank or entering the word "Yes") without having to create a
list of the single entry (i.e. Yes). The other options in data validation
related to numbers, not text.
Thank you
--
MZ

  #4   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 15,768
Default data validation for a single text entry

Assume you want to allow only the entry Yes in cell A1 (or leave it empty).

Select cell A1
Goto the menu DataValidation
Allow: Custom
Formula: =A1="yes"
OK

--
Biff
Microsoft Excel MVP


"MZ" wrote in message
...
How can I create a data validation for a single text entry (i.e. to allow
leaving the cell blank or entering the word "Yes") without having to
create a
list of the single entry (i.e. Yes). The other options in data validation
related to numbers, not text.
Thank you
--
MZ



  #5   Report Post  
Posted to microsoft.public.excel.newusers
mz mz is offline
external usenet poster
 
Posts: 40
Default data validation for a single text entry

Thank you T. Valko,
I tried your suggestions and typed: =AF="Yes" (AF is the cell address)
but received a pop-up error in the Validation box that states: A named range
you specified cannot be found
--
MZ


"T. Valko" wrote:

Assume you want to allow only the entry Yes in cell A1 (or leave it empty).

Select cell A1
Goto the menu DataValidation
Allow: Custom
Formula: =A1="yes"
OK

--
Biff
Microsoft Excel MVP


"MZ" wrote in message
...
How can I create a data validation for a single text entry (i.e. to allow
leaving the cell blank or entering the word "Yes") without having to
create a
list of the single entry (i.e. Yes). The other options in data validation
related to numbers, not text.
Thank you
--
MZ



.



  #6   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 15,768
Default data validation for a single text entry

I tried your suggestions and typed: =AF="Yes"
(AF is the cell address)


Ok, so what's the row number of the cell address? Is it AF10? AF25? You need
to include the row number.

--
Biff
Microsoft Excel MVP


"MZ" wrote in message
...
Thank you T. Valko,
I tried your suggestions and typed: =AF="Yes" (AF is the cell address)
but received a pop-up error in the Validation box that states: A named
range
you specified cannot be found
--
MZ


"T. Valko" wrote:

Assume you want to allow only the entry Yes in cell A1 (or leave it
empty).

Select cell A1
Goto the menu DataValidation
Allow: Custom
Formula: =A1="yes"
OK

--
Biff
Microsoft Excel MVP


"MZ" wrote in message
...
How can I create a data validation for a single text entry (i.e. to
allow
leaving the cell blank or entering the word "Yes") without having to
create a
list of the single entry (i.e. Yes). The other options in data
validation
related to numbers, not text.
Thank you
--
MZ



.



  #7   Report Post  
Posted to microsoft.public.excel.newusers
mz mz is offline
external usenet poster
 
Posts: 40
Default data validation for a single text entry

Thank you for correcting my error in identifying the cell; it works fine now
--
MZ


"T. Valko" wrote:

I tried your suggestions and typed: =AF="Yes"
(AF is the cell address)


Ok, so what's the row number of the cell address? Is it AF10? AF25? You need
to include the row number.

--
Biff
Microsoft Excel MVP


"MZ" wrote in message
...
Thank you T. Valko,
I tried your suggestions and typed: =AF="Yes" (AF is the cell address)
but received a pop-up error in the Validation box that states: A named
range
you specified cannot be found
--
MZ


"T. Valko" wrote:

Assume you want to allow only the entry Yes in cell A1 (or leave it
empty).

Select cell A1
Goto the menu DataValidation
Allow: Custom
Formula: =A1="yes"
OK

--
Biff
Microsoft Excel MVP


"MZ" wrote in message
...
How can I create a data validation for a single text entry (i.e. to
allow
leaving the cell blank or entering the word "Yes") without having to
create a
list of the single entry (i.e. Yes). The other options in data
validation
related to numbers, not text.
Thank you
--
MZ


.



.

  #8   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 15,768
Default data validation for a single text entry

Good deal. Thanks for the feedback!

--
Biff
Microsoft Excel MVP


"MZ" wrote in message
...
Thank you for correcting my error in identifying the cell; it works fine
now
--
MZ


"T. Valko" wrote:

I tried your suggestions and typed: =AF="Yes"
(AF is the cell address)


Ok, so what's the row number of the cell address? Is it AF10? AF25? You
need
to include the row number.

--
Biff
Microsoft Excel MVP


"MZ" wrote in message
...
Thank you T. Valko,
I tried your suggestions and typed: =AF="Yes" (AF is the cell address)
but received a pop-up error in the Validation box that states: A named
range
you specified cannot be found
--
MZ


"T. Valko" wrote:

Assume you want to allow only the entry Yes in cell A1 (or leave it
empty).

Select cell A1
Goto the menu DataValidation
Allow: Custom
Formula: =A1="yes"
OK

--
Biff
Microsoft Excel MVP


"MZ" wrote in message
...
How can I create a data validation for a single text entry (i.e. to
allow
leaving the cell blank or entering the word "Yes") without having to
create a
list of the single entry (i.e. Yes). The other options in data
validation
related to numbers, not text.
Thank you
--
MZ


.



.



  #9   Report Post  
Posted to microsoft.public.excel.newusers
external usenet poster
 
Posts: 2,979
Default data validation for a single text entry

Another option is to select Allow: List
In the Source box, type: Yes
Remove the check mark from the box for In-cell drop down

Note: Entries will have to exactly match what you type in the Source
box, so YES or yes would not be allowed, only Yes

If you want to allow other variations, you could add them in the Source
Box, e.g.: Yes,YES,yes


MZ wrote:
How can I create a data validation for a single text entry (i.e. to allow
leaving the cell blank or entering the word "Yes") without having to create a
list of the single entry (i.e. Yes). The other options in data validation
related to numbers, not text.
Thank you



--
Debra Dalgleish
Contextures
www.contextures.com/tiptech.html
Blog: http://blog.contextures.com

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
Auto entry of data based on entry of text in another column or fie Judy Rose Excel Discussion (Misc queries) 2 May 21st 08 01:14 PM
Single Point Data Entry Worksheet? Keith Excel Discussion (Misc queries) 1 September 2nd 06 02:57 PM
Formula and Data Entry in a Single Cell Josh VM Excel Discussion (Misc queries) 1 October 21st 05 09:31 PM
Return a block of text based on a single "short name" entry cindee Excel Worksheet Functions 5 October 5th 05 08:43 PM
How to automatically change a single letter text entry to caps?? Bigweed New Users to Excel 5 August 8th 05 07:39 PM


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