PC Review


Reply
Thread Tools Rate Thread

cell data not validated if navigating cell to cell with mouse

 
 
=?Utf-8?B?TG92ZVRoYXRNb3VzZQ==?=
Guest
Posts: n/a
 
      19th May 2006
When skipping around in a table of data to update certain cells, its quite
common for some to click into the cell, enter the new data, and then click
the next cell where data must be updated. I have found that when Validating
data at these cells, validation does not work unless you hit the ENTER key to
accept the new data.

Is there a way to either have the validation work by using the mouse
navigation method or prevent mouse navigation from switching cells before an
ENTER key is pressed?
Thanks

 
Reply With Quote
 
 
 
 
davesexcel
Guest
Posts: n/a
 
      20th May 2006

hmm.. I can't duplicated the problem


--
davesexcel


------------------------------------------------------------------------
davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708
View this thread: http://www.excelforum.com/showthread...hreadid=543869

 
Reply With Quote
 
=?Utf-8?B?TG92ZVRoYXRNb3VzZQ==?=
Guest
Posts: n/a
 
      21st May 2006
I guess I did not define it far enough. If the validation criteria strickly
monitors the cell where data is being entered, you are correct and that works
fine. If, on the other hand, a custom formula is entered that checks another
cells value as a prerequisit for entry of a value in the Entry Cell, this is
where I run into the problem. My table consists of columns of entry that
represent manhours entry for a daily time sheet. At the bottom of the column
is a SUM cell for each day that totals all the cells above it in that table
column. The validation for each of the cells in a column checks the SUM cell
for a value =< 24. In other words, you can't have more than 24 hours in any
one day.

The first time I enter a value in any of that days column cells that makes
the SUM cell exceed 24, Excel actually accepts that entry if and only if I
just click into another field. This is even though the validation criteria
has been exceeded. If I try to enter something else in that same cell a
second time, nothing will be accepted using the Mouse Click method of entry
until I actually delete the contents of the field.

Using the ENTER key to make cell data entry has no such issues.
Any ideas?
Thanks
"davesexcel" wrote:

>
> hmm.. I can't duplicated the problem
>
>
> --
> davesexcel
>
>
> ------------------------------------------------------------------------
> davesexcel's Profile: http://www.excelforum.com/member.php...o&userid=31708
> View this thread: http://www.excelforum.com/showthread...hreadid=543869
>
>

 
Reply With Quote
 
Ragdyer
Guest
Posts: n/a
 
      21st May 2006
Say you're adding A1 to A10, with your Sum() function in A11:

=SUM(A1:A10)

And, I assume your validation formula might be:

=$A$11<=24

If I'm correct in my assumption of your formula, try this validation formula
instead:

=SUM(A1:A10)<=24

Which *doesn't* allow the entry you described, at least on my XL97 machine.
--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"LoveThatMouse" <(E-Mail Removed)> wrote in message
news:51D74EBF-00B7-4231-906E-(E-Mail Removed)...
> I guess I did not define it far enough. If the validation criteria

strickly
> monitors the cell where data is being entered, you are correct and that

works
> fine. If, on the other hand, a custom formula is entered that checks

another
> cells value as a prerequisit for entry of a value in the Entry Cell, this

is
> where I run into the problem. My table consists of columns of entry that
> represent manhours entry for a daily time sheet. At the bottom of the

column
> is a SUM cell for each day that totals all the cells above it in that

table
> column. The validation for each of the cells in a column checks the SUM

cell
> for a value =< 24. In other words, you can't have more than 24 hours in

any
> one day.
>
> The first time I enter a value in any of that days column cells that makes
> the SUM cell exceed 24, Excel actually accepts that entry if and only if I
> just click into another field. This is even though the validation criteria
> has been exceeded. If I try to enter something else in that same cell a
> second time, nothing will be accepted using the Mouse Click method of

entry
> until I actually delete the contents of the field.
>
> Using the ENTER key to make cell data entry has no such issues.
> Any ideas?
> Thanks
> "davesexcel" wrote:
>
> >
> > hmm.. I can't duplicated the problem
> >
> >
> > --
> > davesexcel
> >
> >
> > ------------------------------------------------------------------------
> > davesexcel's Profile:

http://www.excelforum.com/member.php...o&userid=31708
> > View this thread:

http://www.excelforum.com/showthread...hreadid=543869
> >
> >


 
Reply With Quote
 
Ragdyer
Guest
Posts: n/a
 
      21st May 2006
Forgot the absolutes:

=SUM($B$1:$B$10)<=24

--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"Ragdyer" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Say you're adding A1 to A10, with your Sum() function in A11:
>
> =SUM(A1:A10)
>
> And, I assume your validation formula might be:
>
> =$A$11<=24
>
> If I'm correct in my assumption of your formula, try this validation

formula
> instead:
>
> =SUM(A1:A10)<=24
>
> Which *doesn't* allow the entry you described, at least on my XL97

machine.
> --
> HTH,
>
> RD
>
> --------------------------------------------------------------------------

-
> Please keep all correspondence within the NewsGroup, so all may benefit !
> --------------------------------------------------------------------------

-
> "LoveThatMouse" <(E-Mail Removed)> wrote in message
> news:51D74EBF-00B7-4231-906E-(E-Mail Removed)...
> > I guess I did not define it far enough. If the validation criteria

> strickly
> > monitors the cell where data is being entered, you are correct and that

> works
> > fine. If, on the other hand, a custom formula is entered that checks

> another
> > cells value as a prerequisit for entry of a value in the Entry Cell,

this
> is
> > where I run into the problem. My table consists of columns of entry that
> > represent manhours entry for a daily time sheet. At the bottom of the

> column
> > is a SUM cell for each day that totals all the cells above it in that

> table
> > column. The validation for each of the cells in a column checks the SUM

> cell
> > for a value =< 24. In other words, you can't have more than 24 hours in

> any
> > one day.
> >
> > The first time I enter a value in any of that days column cells that

makes
> > the SUM cell exceed 24, Excel actually accepts that entry if and only if

I
> > just click into another field. This is even though the validation

criteria
> > has been exceeded. If I try to enter something else in that same cell a
> > second time, nothing will be accepted using the Mouse Click method of

> entry
> > until I actually delete the contents of the field.
> >
> > Using the ENTER key to make cell data entry has no such issues.
> > Any ideas?
> > Thanks
> > "davesexcel" wrote:
> >
> > >
> > > hmm.. I can't duplicated the problem
> > >
> > >
> > > --
> > > davesexcel
> > >
> > >

> >

> ------------------------------------------------------------------------
> > > davesexcel's Profile:

> http://www.excelforum.com/member.php...o&userid=31708
> > > View this thread:

> http://www.excelforum.com/showthread...hreadid=543869
> > >
> > >

>


 
Reply With Quote
 
=?Utf-8?B?TG92ZVRoYXRNb3VzZQ==?=
Guest
Posts: n/a
 
      21st May 2006
Right on the money. Thanks. Can't say I understand why one formula vs. the
other worked but your suggestion made my day. Thanks
LTM

"Ragdyer" wrote:

> Forgot the absolutes:
>
> =SUM($B$1:$B$10)<=24
>
> --
> Regards,
>
> RD
>
> ---------------------------------------------------------------------------
> Please keep all correspondence within the NewsGroup, so all may benefit !
> ---------------------------------------------------------------------------
> "Ragdyer" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
> > Say you're adding A1 to A10, with your Sum() function in A11:
> >
> > =SUM(A1:A10)
> >
> > And, I assume your validation formula might be:
> >
> > =$A$11<=24
> >
> > If I'm correct in my assumption of your formula, try this validation

> formula
> > instead:
> >
> > =SUM(A1:A10)<=24
> >
> > Which *doesn't* allow the entry you described, at least on my XL97

> machine.
> > --
> > HTH,
> >
> > RD
> >
> > --------------------------------------------------------------------------

> -
> > Please keep all correspondence within the NewsGroup, so all may benefit !
> > --------------------------------------------------------------------------

> -
> > "LoveThatMouse" <(E-Mail Removed)> wrote in message
> > news:51D74EBF-00B7-4231-906E-(E-Mail Removed)...
> > > I guess I did not define it far enough. If the validation criteria

> > strickly
> > > monitors the cell where data is being entered, you are correct and that

> > works
> > > fine. If, on the other hand, a custom formula is entered that checks

> > another
> > > cells value as a prerequisit for entry of a value in the Entry Cell,

> this
> > is
> > > where I run into the problem. My table consists of columns of entry that
> > > represent manhours entry for a daily time sheet. At the bottom of the

> > column
> > > is a SUM cell for each day that totals all the cells above it in that

> > table
> > > column. The validation for each of the cells in a column checks the SUM

> > cell
> > > for a value =< 24. In other words, you can't have more than 24 hours in

> > any
> > > one day.
> > >
> > > The first time I enter a value in any of that days column cells that

> makes
> > > the SUM cell exceed 24, Excel actually accepts that entry if and only if

> I
> > > just click into another field. This is even though the validation

> criteria
> > > has been exceeded. If I try to enter something else in that same cell a
> > > second time, nothing will be accepted using the Mouse Click method of

> > entry
> > > until I actually delete the contents of the field.
> > >
> > > Using the ENTER key to make cell data entry has no such issues.
> > > Any ideas?
> > > Thanks
> > > "davesexcel" wrote:
> > >
> > > >
> > > > hmm.. I can't duplicated the problem
> > > >
> > > >
> > > > --
> > > > davesexcel
> > > >
> > > >
> > >

> > ------------------------------------------------------------------------
> > > > davesexcel's Profile:

> > http://www.excelforum.com/member.php...o&userid=31708
> > > > View this thread:

> > http://www.excelforum.com/showthread...hreadid=543869
> > > >
> > > >

> >

>
>

 
Reply With Quote
 
Ragdyer
Guest
Posts: n/a
 
      21st May 2006
You're welcome -
And thank you for the feed-back.
--
Regards,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"LoveThatMouse" <(E-Mail Removed)> wrote in message
news:04838AD9-6953-447D-9D10-(E-Mail Removed)...
> Right on the money. Thanks. Can't say I understand why one formula vs. the
> other worked but your suggestion made my day. Thanks
> LTM
>
> "Ragdyer" wrote:
>
> > Forgot the absolutes:
> >
> > =SUM($B$1:$B$10)<=24
> >
> > --
> > Regards,
> >
> > RD
> >

>
> --------------------------------------------------------------------------

-
> > Please keep all correspondence within the NewsGroup, so all may benefit

!
>
> --------------------------------------------------------------------------

-
> > "Ragdyer" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> > > Say you're adding A1 to A10, with your Sum() function in A11:
> > >
> > > =SUM(A1:A10)
> > >
> > > And, I assume your validation formula might be:
> > >
> > > =$A$11<=24
> > >
> > > If I'm correct in my assumption of your formula, try this validation

> > formula
> > > instead:
> > >
> > > =SUM(A1:A10)<=24
> > >
> > > Which *doesn't* allow the entry you described, at least on my XL97

> > machine.
> > > --
> > > HTH,
> > >
> > > RD
> > >

> >

> --------------------------------------------------------------------------
> > -
> > > Please keep all correspondence within the NewsGroup, so all may

benefit !
> >

> --------------------------------------------------------------------------
> > -
> > > "LoveThatMouse" <(E-Mail Removed)> wrote in

message
> > > news:51D74EBF-00B7-4231-906E-(E-Mail Removed)...
> > > > I guess I did not define it far enough. If the validation criteria
> > > strickly
> > > > monitors the cell where data is being entered, you are correct and

that
> > > works
> > > > fine. If, on the other hand, a custom formula is entered that

checks
> > > another
> > > > cells value as a prerequisit for entry of a value in the Entry Cell,

> > this
> > > is
> > > > where I run into the problem. My table consists of columns of entry

that
> > > > represent manhours entry for a daily time sheet. At the bottom of

the
> > > column
> > > > is a SUM cell for each day that totals all the cells above it in

that
> > > table
> > > > column. The validation for each of the cells in a column checks the

SUM
> > > cell
> > > > for a value =< 24. In other words, you can't have more than 24

hours in
> > > any
> > > > one day.
> > > >
> > > > The first time I enter a value in any of that days column cells that

> > makes
> > > > the SUM cell exceed 24, Excel actually accepts that entry if and

only if
> > I
> > > > just click into another field. This is even though the validation

> > criteria
> > > > has been exceeded. If I try to enter something else in that same

cell a
> > > > second time, nothing will be accepted using the Mouse Click method

of
> > > entry
> > > > until I actually delete the contents of the field.
> > > >
> > > > Using the ENTER key to make cell data entry has no such issues.
> > > > Any ideas?
> > > > Thanks
> > > > "davesexcel" wrote:
> > > >
> > > > >
> > > > > hmm.. I can't duplicated the problem
> > > > >
> > > > >
> > > > > --
> > > > > davesexcel
> > > > >
> > > > >
> > > >

> >

> ------------------------------------------------------------------------
> > > > > davesexcel's Profile:
> > > http://www.excelforum.com/member.php...o&userid=31708
> > > > > View this thread:
> > > http://www.excelforum.com/showthread...hreadid=543869
> > > > >
> > > > >
> > >

> >
> >


 
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 in cell disappears, reappears by scrolling mouse over cell FK Microsoft Excel Misc 3 22nd Sep 2009 03:39 PM
ClearContents of selected cell and cell validated as list/indirect AA Arens Microsoft Excel Discussion 5 14th May 2006 07:26 AM
Selecting a specific cell (that is data validated) cliodne Microsoft Excel Programming 5 23rd Apr 2006 07:55 AM
Display background color of a cell in a Validated cell =?Utf-8?B?SW5mb3NlZWtlcg==?= Microsoft Excel Programming 9 26th Apr 2005 08:40 PM
Validated List Cell enters data into other cell jeff Microsoft Excel Misc 2 24th Apr 2004 02:12 AM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:08 PM.