Home |
Search |
Today's Posts |
#10
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Just a slightly different idea...
If there really is no Sunday, then just have a Sunday Macro that does nothing. Private Sub Worksheet_Change(ByVal Target As Range) If Target.Address < Range("J2").Address Then Exit Sub Dim WD As String 'WeekDay Dim Valid As Boolean WD = Target.Value On Error Resume Next Valid = WorksheetFunction.Match(WD, _ Application.GetCustomListContents(2), 0) 0 If Valid Then Run WD & "Macro" End Sub = = = HTH Dana DeLouis Howard wrote: Thanks for all your help, and have a good eveing. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
lower case letter "i" always converts to upper case | Excel Discussion (Misc queries) | |||
Converting "uppercase" string data to "lower case" in CSV file | Excel Discussion (Misc queries) | |||
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell | Excel Discussion (Misc queries) | |||
how do I count only lower case "x" and exclude upper case "X" | Excel Worksheet Functions | |||
Fix Code: Select Case and "Contains" selection | Excel Programming |