Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2
Default How do I show the current month in a date field?

I wish to set an automatic update for the MONTH in a date column in a monthly
expense worksheet, so those date fields will change each time I open the
worksheet. Is there a way to do this in Excel 2007?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 410
Default How do I show the current month in a date field?

On May 22, 1:04*am, G-man wrote:
I wish to set an automatic update for the MONTH in a date column in a monthly
expense worksheet, so those date fields will change each time I open the
worksheet. Is there a way to do this in Excel 2007?


Could you use the =Today() Function in that cell and then right click/
format/custom mmmm?
Jay
  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How do I show the current month in a date field?

This idea is on the right track, but not exactly what I'd hoped.
I stumbled on info concerning Today fx, and chose to test '=MONTH(TODAY()'
as a modified version of your suggestion. The cell is Custom-formatted as
m/dd/yyyy (the order I want it to display), just like the rest of the column.
However, this cell now shows 1/5/1900.(???)
I actually wanted to have the day stay the same from one month to the next
and update the month and year regularly. Sorry I left that out.
How can I adjust this to calculate and display in the proper format, and
apply it to the entire column?

"jlclyde" wrote:

On May 22, 1:04 am, G-man wrote:
I wish to set an automatic update for the MONTH in a date column in a monthly
expense worksheet, so those date fields will change each time I open the
worksheet. Is there a way to do this in Excel 2007?


Could you use the =Today() Function in that cell and then right click/
format/custom mmmm?
Jay

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,345
Default How do I show the current month in a date field?

Your cell is showing 1/5/1900 because your formula: =MONTH(TODAY()) returns
the month number 5. Dates are just a count of the number of days since
1900 formatted to look like a date so the number 5 is the date 5 January
1900 which is what you are getting. Reformat that cell as General and you
will get the 5 that you want.

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"G-man" wrote in message
...
This idea is on the right track, but not exactly what I'd hoped.
I stumbled on info concerning Today fx, and chose to test '=MONTH(TODAY()'
as a modified version of your suggestion. The cell is Custom-formatted as
m/dd/yyyy (the order I want it to display), just like the rest of the
column.
However, this cell now shows 1/5/1900.(???)
I actually wanted to have the day stay the same from one month to the next
and update the month and year regularly. Sorry I left that out.
How can I adjust this to calculate and display in the proper format, and
apply it to the entire column?

"jlclyde" wrote:

On May 22, 1:04 am, G-man wrote:
I wish to set an automatic update for the MONTH in a date column in a
monthly
expense worksheet, so those date fields will change each time I open
the
worksheet. Is there a way to do this in Excel 2007?


Could you use the =Today() Function in that cell and then right click/
format/custom mmmm?
Jay




  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 5
Default How do I show the current month in a date field?

That sort of explains the display, but I still need help with the rest of the
question.

"Sandy Mann" wrote:

Your cell is showing 1/5/1900 because your formula: =MONTH(TODAY()) returns
the month number 5. Dates are just a count of the number of days since
1900 formatted to look like a date so the number 5 is the date 5 January
1900 which is what you are getting. Reformat that cell as General and you
will get the 5 that you want.

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"G-man" wrote in message
...
This idea is on the right track, but not exactly what I'd hoped.
I stumbled on info concerning Today fx, and chose to test '=MONTH(TODAY()'
as a modified version of your suggestion. The cell is Custom-formatted as
m/dd/yyyy (the order I want it to display), just like the rest of the
column.
However, this cell now shows 1/5/1900.(???)
I actually wanted to have the day stay the same from one month to the next
and update the month and year regularly. Sorry I left that out.
How can I adjust this to calculate and display in the proper format, and
apply it to the entire column?

"jlclyde" wrote:

On May 22, 1:04 am, G-man wrote:
I wish to set an automatic update for the MONTH in a date column in a
monthly
expense worksheet, so those date fields will change each time I open
the
worksheet. Is there a way to do this in Excel 2007?

Could you use the =Today() Function in that cell and then right click/
format/custom mmmm?
Jay







  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,345
Default How do I show the current month in a date field?

If you want the date to always show the current month and year then use
something like:

=DATE(YEAR(TODAY()),MONTH(TODAY()),27)

Be warned however that this formula will *always* show the current month and
year even if you open a old spreadsheet. If you want to *fix* the date
forever more then copy and Paste Special back into the same cell as Values.


--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"G-man" wrote in message
...
That sort of explains the display, but I still need help with the rest of
the
question.

"Sandy Mann" wrote:

Your cell is showing 1/5/1900 because your formula: =MONTH(TODAY())
returns
the month number 5. Dates are just a count of the number of days since
1900 formatted to look like a date so the number 5 is the date 5 January
1900 which is what you are getting. Reformat that cell as General and
you
will get the 5 that you want.

--
HTH

Sandy
In Perth, the ancient capital of Scotland
and the crowning place of kings


Replace @mailinator.com with @tiscali.co.uk


"G-man" wrote in message
...
This idea is on the right track, but not exactly what I'd hoped.
I stumbled on info concerning Today fx, and chose to test
'=MONTH(TODAY()'
as a modified version of your suggestion. The cell is Custom-formatted
as
m/dd/yyyy (the order I want it to display), just like the rest of the
column.
However, this cell now shows 1/5/1900.(???)
I actually wanted to have the day stay the same from one month to the
next
and update the month and year regularly. Sorry I left that out.
How can I adjust this to calculate and display in the proper format,
and
apply it to the entire column?

"jlclyde" wrote:

On May 22, 1:04 am, G-man wrote:
I wish to set an automatic update for the MONTH in a date column in
a
monthly
expense worksheet, so those date fields will change each time I open
the
worksheet. Is there a way to do this in Excel 2007?

Could you use the =Today() Function in that cell and then right click/
format/custom mmmm?
Jay








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
Year-to-date based on current month John in Toronto Excel Discussion (Misc queries) 2 May 9th 08 04:23 PM
Current date formula based on month Renz09 Excel Discussion (Misc queries) 2 May 5th 06 07:04 AM
Converting a date field into a month-year only field C.Hirsch Excel Discussion (Misc queries) 1 April 25th 06 12:08 AM
Show week number in current month DKerr Excel Discussion (Misc queries) 4 February 23rd 06 09:20 PM
Pulling a date in the current month Brian Excel Worksheet Functions 2 October 24th 05 05:57 PM


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

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

About Us

"It's about Microsoft Excel"