Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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
![]() |
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
worksheet functions | Excel Discussion (Misc queries) | |||
how do I show dates in a column in an excel worksheet? | Excel Discussion (Misc queries) | |||
How to call worksheet functions from Access ? | Excel Worksheet Functions | |||
How use group and ungroup functions while worksheet is protected | Excel Worksheet Functions | |||
Seach Column and return multiple dates to another worksheet? | Excel Worksheet Functions |