Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I'm using Excel 2003. I'm trying to use conditional formatting to have
a blank cell change to the day of the week when a date is entered into another cell. |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Put this in your blank cell instead and with a date in B1 you get the day of
the week, =TEXT(B1,"dddd") Mike " wrote: I'm using Excel 2003. I'm trying to use conditional formatting to have a blank cell change to the day of the week when a date is entered into another cell. |
#3
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Will something like this work?
=IF(B1<"",TODAY(),"") Regards, Ryan-- -- RyGuy " wrote: I'm using Excel 2003. I'm trying to use conditional formatting to have a blank cell change to the day of the week when a date is entered into another cell. |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
No need to use conditional formatting for this.......if your date is in A1,
simply put =A1 in the cell where you want the day of the week and format that cell for Custom dddd Vaya con Dios, Chuck, CABGx3 " wrote: I'm using Excel 2003. I'm trying to use conditional formatting to have a blank cell change to the day of the week when a date is entered into another cell. |
#5
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Try it like this:
IF(AND(ISNUMBER($B1),$B10),TEXT($B1,"dddd"),"") -- Biff Microsoft Excel MVP wrote in message ... I'm using Excel 2003. I'm trying to use conditional formatting to have a blank cell change to the day of the week when a date is entered into another cell. |
#6
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I forgot to include the "=" :
=IF(AND(ISNUMBER($B1),$B10),TEXT($B1,"dddd"),"") This version is more robust: =IF(COUNT(B1,--(B10))=2,TEXT(B1,"dddd"),"") -- Biff Microsoft Excel MVP "T. Valko" wrote in message ... Try it like this: IF(AND(ISNUMBER($B1),$B10),TEXT($B1,"dddd"),"") -- Biff Microsoft Excel MVP wrote in message ... I'm using Excel 2003. I'm trying to use conditional formatting to have a blank cell change to the day of the week when a date is entered into another cell. |
#7
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Not possible with CF, which can only change formatting, or without a formula in
the "blank" cell. Formula in B1 =A1 formatted to dddd Or, of course, through VBA event code. Private Sub Worksheet_Change(ByVal Target As Range) On Error GoTo ws_exit: Application.EnableEvents = False If Not Intersect(Target, Me.Range("A1:A10")) Is Nothing Then With Target If .Value < "" Then .Offset(0, 1).Value = Format(.Value, "dddd") End If End With End If ws_exit: Application.EnableEvents = True End Sub Gord Dibben MS Excel MVP On Wed, 9 Jan 2008 11:23:39 -0800 (PST), wrote: I'm using Excel 2003. I'm trying to use conditional formatting to have a blank cell change to the day of the week when a date is entered into another cell. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
conditional formatting "if part of cell contents contains string" | Excel Worksheet Functions | |||
Viewing "conditional formatting" in other apps | Excel Discussion (Misc queries) | |||
Conditional Formatting: "handwritten" circles? | Excel Discussion (Misc queries) | |||
Conditional Formatting-can a "then" be placed with the "if". | Excel Worksheet Functions | |||
Insert "-" in text "1234567890" to have a output like this"123-456-7890" | Excel Discussion (Misc queries) |