Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default Change Default Auto-Fill-In month

If I format a cell as a date mm/dd/yy; If I only type in the month and date,
"4/15" ,excel will automatically fill in the the current year, so the cell
will end up displaying 4/15/10.

But if I only type in the date, "15", then excel will fill in the January
2000 as the default month and year, so the cell will end up displaying
1/15/00.

Is there a way to tell excel to auto fill in the current month and current
year when I do this? (example: If I type in the date, "15", then I want excel
to fill in today's month and year, so the cell will display 4/15/10.)
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 464
Default Change Default Auto-Fill-In month

Ctrl+; and edit the day.



--
Regards
Dave Hawley
www.ozgrid.com
"scootr" wrote in message
...
If I format a cell as a date mm/dd/yy; If I only type in the month and
date,
"4/15" ,excel will automatically fill in the the current year, so the cell
will end up displaying 4/15/10.

But if I only type in the date, "15", then excel will fill in the January
2000 as the default month and year, so the cell will end up displaying
1/15/00.

Is there a way to tell excel to auto fill in the current month and current
year when I do this? (example: If I type in the date, "15", then I want
excel
to fill in today's month and year, so the cell will display 4/15/10.)


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default Change Default Auto-Fill-In month

I don't really understand.
Ctrl+

I hold "Ctrl" and the "+" keys and nothing happens.

"ozgrid.com" wrote:

Ctrl+; and edit the day.



--
Regards
Dave Hawley
www.ozgrid.com
"scootr" wrote in message
...
If I format a cell as a date mm/dd/yy; If I only type in the month and
date,
"4/15" ,excel will automatically fill in the the current year, so the cell
will end up displaying 4/15/10.

But if I only type in the date, "15", then excel will fill in the January
2000 as the default month and year, so the cell will end up displaying
1/15/00.

Is there a way to tell excel to auto fill in the current month and current
year when I do this? (example: If I type in the date, "15", then I want
excel
to fill in today's month and year, so the cell will display 4/15/10.)


  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35,218
Default Change Default Auto-Fill-In month

You could use a macro. But I wouldn't. I'd be worried that a number that I
wanted would be converted to a date.

You could use two cells (or two columns of cells???) with a formula in the
second column that uses the first cell to create the real date.

So if you enter 15 in A1, you could use this in B1:
=date(year(today()),month(today()),a1)
or maybe better:
=if(a1="","",date(year(today()),month(today()),a1) )

But you'll have to make sure you enter a valid day for the current month.

scootr wrote:

If I format a cell as a date mm/dd/yy; If I only type in the month and date,
"4/15" ,excel will automatically fill in the the current year, so the cell
will end up displaying 4/15/10.

But if I only type in the date, "15", then excel will fill in the January
2000 as the default month and year, so the cell will end up displaying
1/15/00.

Is there a way to tell excel to auto fill in the current month and current
year when I do this? (example: If I type in the date, "15", then I want excel
to fill in today's month and year, so the cell will display 4/15/10.)


--

Dave Peterson
  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 8,651
Default Change Default Auto-Fill-In month

He said Ctrl+; In other words hold the Ctrl key and use the ; (semi-colon)
key.
--
David Biddulph


"scootr" wrote in message
...
I don't really understand.
Ctrl+

I hold "Ctrl" and the "+" keys and nothing happens.

"ozgrid.com" wrote:

Ctrl+; and edit the day.



--
Regards
Dave Hawley
www.ozgrid.com
"scootr" wrote in message
...
If I format a cell as a date mm/dd/yy; If I only type in the month and
date,
"4/15" ,excel will automatically fill in the the current year, so the
cell
will end up displaying 4/15/10.

But if I only type in the date, "15", then excel will fill in the
January
2000 as the default month and year, so the cell will end up displaying
1/15/00.

Is there a way to tell excel to auto fill in the current month and
current
year when I do this? (example: If I type in the date, "15", then I want
excel
to fill in today's month and year, so the cell will display 4/15/10.)





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 9
Default Change Default Auto-Fill-In month

Thanks for all of your help guys.
I found a simple solution.

I just formatted the cells as TEXT.
Everything appears to be working exactly as I want.

Again,
Thanks for your help.

"Dave Peterson" wrote:

You could use a macro. But I wouldn't. I'd be worried that a number that I
wanted would be converted to a date.

You could use two cells (or two columns of cells???) with a formula in the
second column that uses the first cell to create the real date.

So if you enter 15 in A1, you could use this in B1:
=date(year(today()),month(today()),a1)
or maybe better:
=if(a1="","",date(year(today()),month(today()),a1) )

But you'll have to make sure you enter a valid day for the current month.

scootr wrote:

If I format a cell as a date mm/dd/yy; If I only type in the month and date,
"4/15" ,excel will automatically fill in the the current year, so the cell
will end up displaying 4/15/10.

But if I only type in the date, "15", then excel will fill in the January
2000 as the default month and year, so the cell will end up displaying
1/15/00.

Is there a way to tell excel to auto fill in the current month and current
year when I do this? (example: If I type in the date, "15", then I want excel
to fill in today's month and year, so the cell will display 4/15/10.)


--

Dave Peterson
.

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 Fill days of the month (not including weekends) John Krsulic[_2_] Excel Worksheet Functions 6 July 2nd 07 04:47 PM
Change default fill color Harm Ozinga Excel Discussion (Misc queries) 1 February 27th 07 03:00 PM
Formula to auto fill in following month. MagnoliaSouth Excel Worksheet Functions 7 October 2nd 06 02:10 AM
excel auto fill needs to be have default action (series,copy...) . QuiteGood001 Excel Discussion (Misc queries) 3 July 5th 05 02:46 PM
Set default in auto fill options, I always want to copy cell, som. OSHAman Excel Discussion (Misc queries) 2 March 25th 05 11:22 PM


All times are GMT +1. The time now is 03:06 PM.

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"