PC Review


Reply
Thread Tools Rate Thread

Date Entry Issue

 
 
=?Utf-8?B?QmFyYiBSZWluaGFyZHQ=?=
Guest
Posts: n/a
 
      13th Oct 2006
I'm sure this isn't the first time this problem has cropped up so I'm asking
for assistance.

I have a worksheet that requires the user to enter dates into several cells
in the workbook. The dates are displayed as MMM-YY. If the user enters
9/01, they get 9/1/2006 instead of 9/2001. Is there any way to ensure that
they enter the dates correctly. I'd like to add it to the worksheet change
event if necessary.

Thanks
 
Reply With Quote
 
 
 
 
PCLIVE
Guest
Posts: n/a
 
      13th Oct 2006
If you want the format of "9/2001", I would think you could just format the
cell as:

m/yyyy


"Barb Reinhardt" <(E-Mail Removed)> wrote in message
news:879F9EDE-36C4-4A65-A31B-(E-Mail Removed)...
> I'm sure this isn't the first time this problem has cropped up so I'm
> asking
> for assistance.
>
> I have a worksheet that requires the user to enter dates into several
> cells
> in the workbook. The dates are displayed as MMM-YY. If the user enters
> 9/01, they get 9/1/2006 instead of 9/2001. Is there any way to ensure
> that
> they enter the dates correctly. I'd like to add it to the worksheet
> change
> event if necessary.
>
> Thanks



 
Reply With Quote
 
=?Utf-8?B?QmFyYiBSZWluaGFyZHQ=?=
Guest
Posts: n/a
 
      13th Oct 2006
That doesn't solve the problem if the user enters the date as 9/01. It
assumes that what's entered is the month and DAY, not the year. I need to
ensure that they enter the year and am not sure how to address this, hence my
post.

"PCLIVE" wrote:

> If you want the format of "9/2001", I would think you could just format the
> cell as:
>
> m/yyyy
>
>
> "Barb Reinhardt" <(E-Mail Removed)> wrote in message
> news:879F9EDE-36C4-4A65-A31B-(E-Mail Removed)...
> > I'm sure this isn't the first time this problem has cropped up so I'm
> > asking
> > for assistance.
> >
> > I have a worksheet that requires the user to enter dates into several
> > cells
> > in the workbook. The dates are displayed as MMM-YY. If the user enters
> > 9/01, they get 9/1/2006 instead of 9/2001. Is there any way to ensure
> > that
> > they enter the dates correctly. I'd like to add it to the worksheet
> > change
> > event if necessary.
> >
> > Thanks

>
>
>

 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      13th Oct 2006
I think the safest way is to enter a real date. One that includes day, month,
year.

But if I entered: 9/2001
excel saw it as September 1, 2001.



Barb Reinhardt wrote:
>
> I'm sure this isn't the first time this problem has cropped up so I'm asking
> for assistance.
>
> I have a worksheet that requires the user to enter dates into several cells
> in the workbook. The dates are displayed as MMM-YY. If the user enters
> 9/01, they get 9/1/2006 instead of 9/2001. Is there any way to ensure that
> they enter the dates correctly. I'd like to add it to the worksheet change
> event if necessary.
>
> Thanks


--

Dave Peterson
 
Reply With Quote
 
PCLIVE
Guest
Posts: n/a
 
      13th Oct 2006
Sorry about that. I tested by entering 9/06 and it returned "9/2006". It,
as you know, didn't work when typing "9/01".

What is the format in which the user is suppose to enter the date? Or what
are all the different formats in which someone could or is allowed to enter
the day. Once that is known, then appropriate steps may be taken to ensure
the final result is as you wish.



"Barb Reinhardt" <(E-Mail Removed)> wrote in message
news:31722C50-34F6-480F-AF17-(E-Mail Removed)...
> That doesn't solve the problem if the user enters the date as 9/01. It
> assumes that what's entered is the month and DAY, not the year. I need
> to
> ensure that they enter the year and am not sure how to address this, hence
> my
> post.
>
> "PCLIVE" wrote:
>
>> If you want the format of "9/2001", I would think you could just format
>> the
>> cell as:
>>
>> m/yyyy
>>
>>
>> "Barb Reinhardt" <(E-Mail Removed)> wrote in
>> message
>> news:879F9EDE-36C4-4A65-A31B-(E-Mail Removed)...
>> > I'm sure this isn't the first time this problem has cropped up so I'm
>> > asking
>> > for assistance.
>> >
>> > I have a worksheet that requires the user to enter dates into several
>> > cells
>> > in the workbook. The dates are displayed as MMM-YY. If the user
>> > enters
>> > 9/01, they get 9/1/2006 instead of 9/2001. Is there any way to ensure
>> > that
>> > they enter the dates correctly. I'd like to add it to the worksheet
>> > change
>> > event if necessary.
>> >
>> > Thanks

>>
>>
>>



 
Reply With Quote
 
=?Utf-8?B?QmFyYiBSZWluaGFyZHQ=?=
Guest
Posts: n/a
 
      16th Oct 2006
While I agree with you in theory, in practice, the folks who might use this
form have been given that instruction and aren't doing it. I want to build
in a more fool proof method.

"Dave Peterson" wrote:

> I think the safest way is to enter a real date. One that includes day, month,
> year.
>
> But if I entered: 9/2001
> excel saw it as September 1, 2001.
>
>
>
> Barb Reinhardt wrote:
> >
> > I'm sure this isn't the first time this problem has cropped up so I'm asking
> > for assistance.
> >
> > I have a worksheet that requires the user to enter dates into several cells
> > in the workbook. The dates are displayed as MMM-YY. If the user enters
> > 9/01, they get 9/1/2006 instead of 9/2001. Is there any way to ensure that
> > they enter the dates correctly. I'd like to add it to the worksheet change
> > event if necessary.
> >
> > Thanks

>
> --
>
> Dave Peterson
>

 
Reply With Quote
 
Dave Peterson
Guest
Posts: n/a
 
      16th Oct 2006
I guess you could format the cell as text and keep the entry as text--not a real
date.

Or you could format the cell as text, then have an event macro that changes the
entry into the date you really want. But this could be a problem if the user
had to change an existing date.

But I think that training the user would be easier.



Barb Reinhardt wrote:
>
> While I agree with you in theory, in practice, the folks who might use this
> form have been given that instruction and aren't doing it. I want to build
> in a more fool proof method.
>
> "Dave Peterson" wrote:
>
> > I think the safest way is to enter a real date. One that includes day, month,
> > year.
> >
> > But if I entered: 9/2001
> > excel saw it as September 1, 2001.
> >
> >
> >
> > Barb Reinhardt wrote:
> > >
> > > I'm sure this isn't the first time this problem has cropped up so I'm asking
> > > for assistance.
> > >
> > > I have a worksheet that requires the user to enter dates into several cells
> > > in the workbook. The dates are displayed as MMM-YY. If the user enters
> > > 9/01, they get 9/1/2006 instead of 9/2001. Is there any way to ensure that
> > > they enter the dates correctly. I'd like to add it to the worksheet change
> > > event if necessary.
> > >
> > > Thanks

> >
> > --
> >
> > Dave Peterson
> >


--

Dave Peterson
 
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
How do I time/date stamp an entry in a note from a calendar entry? Sweet Microsoft Outlook Calendar 1 2nd Apr 2010 07:33 PM
Multiple Date Entry Design And Report Issue =?Utf-8?B?dHJ5aW5nIHRvIGRlbGV0ZSBsb2NraW5nIGZpbGUg Microsoft Access Database Table Design 6 30th Oct 2006 06:49 PM
i have two date fileds Opend date Due date, can i set default on due date so, its always = to open date on my data entry form1 Urgent Mike Saifie Microsoft Access Form Coding 1 9th Mar 2006 01:08 AM
Data Entry Restrictions & Date/Time Entry =?Utf-8?B?S01jR2Vl?= Microsoft Excel Misc 3 30th Dec 2003 05:58 PM
Date fields automatically changing when today date matches date field entry.Help! Brian Cassin Microsoft Access Forms 1 15th Nov 2003 01:51 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 09:17 AM.