Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Michele
 
Posts: n/a
Default worksheet functions with dates

I have a wooksheet that you enter the date in one column(07-05-04), then the
vendor in the next column, discription in the next, who's file is is under,
blank column, then price. What I want to do is when i type the date
(07-05-04) it will automaticlly write the month (July) in the empty column.
So if i type (08-02-04) in the next row, it will automaticlly add the word
August in the cell speciified. Is this possible.

Thanks for you help
  #2   Report Post  
Ron de Bruin
 
Posts: n/a
Default

Hi Michele

You can use this function

=TEXT(A1,"mmm")



--
Regards Ron de Bruin
http://www.rondebruin.nl


"Michele" wrote in message ...
I have a wooksheet that you enter the date in one column(07-05-04), then the
vendor in the next column, discription in the next, who's file is is under,
blank column, then price. What I want to do is when i type the date
(07-05-04) it will automaticlly write the month (July) in the empty column.
So if i type (08-02-04) in the next row, it will automaticlly add the word
August in the cell speciified. Is this possible.

Thanks for you help



  #3   Report Post  
Don Guillett
 
Posts: n/a
Default

right click sheet tabview codecopy/paste this. SAVE
Now if you type a date in col A below row 1 col B will get the month

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Row < 2 Or Target.Column < 1 Then Exit Sub
If IsDate(Target) Then
Target.Offset(, 1) = Format(Month(Target), "mmmm")
End If
End Sub

--
Don Guillett
SalesAid Software

"Michele" wrote in message
...
I have a wooksheet that you enter the date in one column(07-05-04), then

the
vendor in the next column, discription in the next, who's file is is

under,
blank column, then price. What I want to do is when i type the date
(07-05-04) it will automaticlly write the month (July) in the empty

column.
So if i type (08-02-04) in the next row, it will automaticlly add the word
August in the cell speciified. Is this possible.

Thanks for you help



  #4   Report Post  
Peo Sjoblom
 
Posts: n/a
Default

One way, in the empty column cell put

=IF(A2="","",TEXT(A2,"mmmm"))

replace A2 with whatever date cell reference(s)

Regards,

Peo Sjoblom



"Michele" wrote:

I have a wooksheet that you enter the date in one column(07-05-04), then the
vendor in the next column, discription in the next, who's file is is under,
blank column, then price. What I want to do is when i type the date
(07-05-04) it will automaticlly write the month (July) in the empty column.
So if i type (08-02-04) in the next row, it will automaticlly add the word
August in the cell speciified. Is this possible.

Thanks for you help

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
worksheet functions Les Hurley Excel Discussion (Misc queries) 1 December 20th 04 04:40 AM
how do I show dates in a column in an excel worksheet? papacradd Excel Discussion (Misc queries) 1 December 8th 04 02:33 PM
How to call worksheet functions from Access ? Martin Plamondon Excel Worksheet Functions 0 November 18th 04 06:50 PM
How use group and ungroup functions while worksheet is protected Gabriel De la Garza Excel Worksheet Functions 1 November 17th 04 01:44 AM
Seach Column and return multiple dates to another worksheet? Mcasteel Excel Worksheet Functions 0 November 10th 04 07:41 PM


All times are GMT +1. The time now is 04:17 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"