#1   Report Post  
PattiP
 
Posts: n/a
Default Input Masks in Excel?

Does Excel have input masks, similar to Access? I would like the user to
enter a date field but not have to insert the "/" marks. Example: enter
032405 and it would show up as 03/24/05. Thanks!
--
Patti
  #2   Report Post  
Bob Phillips
 
Posts: n/a
Default

No, it's all manual.

--
HTH

Bob Phillips

"PattiP" wrote in message
...
Does Excel have input masks, similar to Access? I would like the user to
enter a date field but not have to insert the "/" marks. Example: enter
032405 and it would show up as 03/24/05. Thanks!
--
Patti



  #3   Report Post  
PattiP
 
Posts: n/a
Default

Thanks, Bob. I thought thats what the anwer might be...


"Bob Phillips" wrote:

No, it's all manual.

--
HTH

Bob Phillips

"PattiP" wrote in message
...
Does Excel have input masks, similar to Access? I would like the user to
enter a date field but not have to insert the "/" marks. Example: enter
032405 and it would show up as 03/24/05. Thanks!
--
Patti




  #4   Report Post  
PattiP
 
Posts: n/a
Default

Is there a way to convert the entry, i.e. 032405, and have it show up in
another cell in date format? Some kind of VB code?

"Bob Phillips" wrote:

No, it's all manual.

--
HTH

Bob Phillips

"PattiP" wrote in message
...
Does Excel have input masks, similar to Access? I would like the user to
enter a date field but not have to insert the "/" marks. Example: enter
032405 and it would show up as 03/24/05. Thanks!
--
Patti




  #5   Report Post  
Bob Phillips
 
Posts: n/a
Default

If you have got a lot, take a look at
http://www.xldynamic.com/source/xld.QDEDownload.html

--
HTH

Bob Phillips

"PattiP" wrote in message
...
Is there a way to convert the entry, i.e. 032405, and have it show up in
another cell in date format? Some kind of VB code?

"Bob Phillips" wrote:

No, it's all manual.

--
HTH

Bob Phillips

"PattiP" wrote in message
...
Does Excel have input masks, similar to Access? I would like the user

to
enter a date field but not have to insert the "/" marks. Example:

enter
032405 and it would show up as 03/24/05. Thanks!
--
Patti








  #6   Report Post  
Bob Phillips
 
Posts: n/a
Default

or try this

Private Sub Worksheet_Change(ByVal Target As Range)

On Error GoTo ws_exit:
Application.EnableEvents = False
If Not Intersect(Target, Me.Range("A1:H10")) Is Nothing Then
With Target
.Value = DateSerial(Right(.Value, 2), Left(.Value, Len(.Value) -
4), Mid(.Value, Len(.Value) - 3, 2))
End With
End If

ws_exit:
Application.EnableEvents = True
End Sub

'This is worksheet event code, which means that it needs to be
'placed in the appropriate worksheet code module, not a standard
'code module. To do this, right-click on the sheet tab, select
'the View Code option from the menu, and paste the code in.


--
HTH

Bob Phillips

"Bob Phillips" wrote in message
...
If you have got a lot, take a look at
http://www.xldynamic.com/source/xld.QDEDownload.html

--
HTH

Bob Phillips

"PattiP" wrote in message
...
Is there a way to convert the entry, i.e. 032405, and have it show up in
another cell in date format? Some kind of VB code?

"Bob Phillips" wrote:

No, it's all manual.

--
HTH

Bob Phillips

"PattiP" wrote in message
...
Does Excel have input masks, similar to Access? I would like the

user
to
enter a date field but not have to insert the "/" marks. Example:

enter
032405 and it would show up as 03/24/05. Thanks!
--
Patti







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
Hints And Tips For New Posters In The Excel Newsgroups Gary Brown Excel Worksheet Functions 0 April 15th 05 05:47 PM
Excel Files Acting Weird Anat Excel Discussion (Misc queries) 0 March 29th 05 03:07 AM
how to convert GETPIVOTDATA from excel 2000 to excel 2002... Need_help_on_excel Excel Worksheet Functions 1 March 15th 05 01:08 AM
Excel error - Startup (and Acrobat PDFMaker) gxdata Setting up and Configuration of Excel 0 February 4th 05 03:44 AM
Difference in number of Excel NewsGroups Hari Prasadh Excel Discussion (Misc queries) 1 January 25th 05 11:32 AM


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

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"