Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
and just to add for those who might be interested.
it also has a weekday function. Range("A20").value = WeekdayName(Weekday(Target.Value) FSt1 "Rick Rothstein" wrote: Others have addressed your main question, I just thought I would mention to you (and the others out there who weren't aware of it) that VB has a MonthName function... it takes the month number as its first argument and an optional Boolean second argument letting you control whether the full or abbreviated month name it returned. So, the code in the True portion of your If/Then/Else block could have be this... Range("A20").Value = MonthName(Month(Target.Value)) -- Rick (MVP - Excel) "Chip Dukes" wrote in message ... I'm trying to get the month from a date representation as follows ... Private Sub Worksheet_Change(ByVal Target As Range) If Target.Column = 3 And Target.Cells.Count = 1 Then Dim strDate As String strDate = Format(Target.Value, "mmmm") Range("A20").Value = strDate Else Exit Sub End If End Sub The error I am getting is ... "Object Required" on the ... strDate = Format(Target.Value, "mmmm") ... line by which I'm guessing Target.Value is not being seen as a date type ... Any ideas as to how I could get the month from a value entered into a call ... the value will always be in the form 5/24/55 ... from which I need the string "May" Chip Dukes (New to Excel programming) . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Date arithmetic: adding 1 month to prior end of month date | Excel Worksheet Functions | |||
Sort month/date/year data using month and date only | Excel Discussion (Misc queries) | |||
How can i change cell colour depending on month of date in cell? | Excel Discussion (Misc queries) | |||
Calculate month-end date from date in adjacent cell? | Excel Worksheet Functions | |||
Increasing cell date by a month | Excel Programming |