PC Review


Reply
Thread Tools Rate Thread

Data Validation to restrict blank value in adjacent field

 
 
=?Utf-8?B?Sm9obiBTLiBMYWJhcmdl?=
Guest
Posts: n/a
 
      17th Aug 2007
Team,
Try this:
In cell A1, add following "custom" validation:
=not(isblank(b1))

As I see it, this should restrict leaving cell A1 unless cell B1 already has
a value.

I've also tried =b1<>"" and some others. Should be simple but I can't get
it to work. Validation will not fire. For each equation I've tried, I've
cut and pasted the same equation into a field and it works fine.

Thanks.

 
Reply With Quote
 
 
 
 
Peo Sjoblom
Guest
Posts: n/a
 
      17th Aug 2007
Your first works, so does your second. You just need to deselect "ignore
blank" in the setup dialogue box


--
Regards,

Peo Sjoblom



"John S. Labarge" <John S. (E-Mail Removed)> wrote in
message news:0C2C280F-F7C0-4575-80C7-(E-Mail Removed)...
> Team,
> Try this:
> In cell A1, add following "custom" validation:
> =not(isblank(b1))
>
> As I see it, this should restrict leaving cell A1 unless cell B1 already
> has
> a value.
>
> I've also tried =b1<>"" and some others. Should be simple but I can't get
> it to work. Validation will not fire. For each equation I've tried, I've
> cut and pasted the same equation into a field and it works fine.
>
> Thanks.
>



 
Reply With Quote
 
Debra Dalgleish
Guest
Posts: n/a
 
      17th Aug 2007
In the data validation dialog box, remove the check mark from Ignore Blank.

John S. Labarge wrote:
> In cell A1, add following "custom" validation:
> =not(isblank(b1))
>
> As I see it, this should restrict leaving cell A1 unless cell B1 already has
> a value.
>
> I've also tried =b1<>"" and some others. Should be simple but I can't get
> it to work. Validation will not fire. For each equation I've tried, I've
> cut and pasted the same equation into a field and it works fine.


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

 
Reply With Quote
 
=?Utf-8?B?Sm9obiBTLiBMYWJhcmdl?=
Guest
Posts: n/a
 
      17th Aug 2007
Peo and Debra,
Thanks to both of you for your responses.

I'm just trying to understand this to forestall my embarrassment of such an
easy solution. I interpreted "Ignore blank" as "Do not fire the validation
in this field should you happen to be leaving this field while it is blank."
If one interprets it as such, this solution, while I see it works, shouldn't
make a difference.

Please explain how you two knew this.

Thanks again.

"Debra Dalgleish" wrote:

> In the data validation dialog box, remove the check mark from Ignore Blank.
>
> John S. Labarge wrote:
> > In cell A1, add following "custom" validation:
> > =not(isblank(b1))
> >
> > As I see it, this should restrict leaving cell A1 unless cell B1 already has
> > a value.
> >
> > I've also tried =b1<>"" and some others. Should be simple but I can't get
> > it to work. Validation will not fire. For each equation I've tried, I've
> > cut and pasted the same equation into a field and it works fine.

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

 
Reply With Quote
 
Debra Dalgleish
Guest
Posts: n/a
 
      17th Aug 2007
In some cases, you may want blank cells to be ignored, so you'd leave
the check mark in the Ignore Blank option.

In your example, you want to check for a blank cell, and prevent an
entry in cell A1 if cell B1 is blank.
So, you turn off the Ignore Blank option so the data validation can test
for the blank cell.

John S. Labarge wrote:
> Peo and Debra,
> Thanks to both of you for your responses.
>
> I'm just trying to understand this to forestall my embarrassment of such an
> easy solution. I interpreted "Ignore blank" as "Do not fire the validation
> in this field should you happen to be leaving this field while it is blank."
> If one interprets it as such, this solution, while I see it works, shouldn't
> make a difference.
>
> Please explain how you two knew this.
>
> Thanks again.
>
> "Debra Dalgleish" wrote:
>
>
>>In the data validation dialog box, remove the check mark from Ignore Blank.
>>
>>John S. Labarge wrote:
>>
>>>In cell A1, add following "custom" validation:
>>>=not(isblank(b1))
>>>
>>>As I see it, this should restrict leaving cell A1 unless cell B1 already has
>>>a value.
>>>
>>>I've also tried =b1<>"" and some others. Should be simple but I can't get
>>>it to work. Validation will not fire. For each equation I've tried, I've
>>>cut and pasted the same equation into a field and it works fine.

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

>



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

 
Reply With Quote
 
Peo Sjoblom
Guest
Posts: n/a
 
      17th Aug 2007
I am sure I learned it through trial and error. I remember I thought I was
smart when I came up with this solution

=OFFSET(A1,,1)<>""


which will work without deselecting the check box.

Then I found out about removing the check mark

Many people interpret it as though you can force a user to enter something
in the cell with validation if you leave it remove the check mark . Frankly
I don't think I even noticed it when I started using validation.


--
Regards,

Peo Sjoblom



"John S. Labarge" <(E-Mail Removed)> wrote in message
news7DB30A8-5042-43C7-B717-(E-Mail Removed)...
> Peo and Debra,
> Thanks to both of you for your responses.
>
> I'm just trying to understand this to forestall my embarrassment of such
> an
> easy solution. I interpreted "Ignore blank" as "Do not fire the
> validation
> in this field should you happen to be leaving this field while it is
> blank."
> If one interprets it as such, this solution, while I see it works,
> shouldn't
> make a difference.
>
> Please explain how you two knew this.
>
> Thanks again.
>
> "Debra Dalgleish" wrote:
>
>> In the data validation dialog box, remove the check mark from Ignore
>> Blank.
>>
>> John S. Labarge wrote:
>> > In cell A1, add following "custom" validation:
>> > =not(isblank(b1))
>> >
>> > As I see it, this should restrict leaving cell A1 unless cell B1
>> > already has
>> > a value.
>> >
>> > I've also tried =b1<>"" and some others. Should be simple but I can't
>> > get
>> > it to work. Validation will not fire. For each equation I've tried,
>> > I've
>> > cut and pasted the same equation into a field and it works fine.

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



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
Data validation - restrict duplicate value Michelle Microsoft Excel Worksheet Functions 8 1st Dec 2009 06:35 AM
Restrict Duplicates using Data Validation Hardeep Kanwar Microsoft Excel Misc 4 6th Jun 2009 08:50 AM
RE: Restrict Duplicates using Data Validation FARAZ QURESHI Microsoft Excel Misc 1 6th Jun 2009 08:12 AM
Data validation lists in adjacent cells =?Utf-8?B?Sm9jaw==?= Microsoft Excel Programming 1 9th Oct 2007 06:23 PM
Conditional Formatting based on data in adjacent cell & restrict save without required data bjohnson Microsoft Excel Programming 1 28th Aug 2007 10:27 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:37 AM.