Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
When formatting a date, I would like to display only the first letter
of the weekday. For example, 9/1/08 (39692) would display as "M". I know format "ddd" will display "Mon", but I'd like to have *only* the first letter.... Any ideas? I am using Excel 2007. Thank you! |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
With your date in Cell A1 in B1 enter
=CHOOSE(WEEKDAY(A1,2),"M","T","W","Th","F") and copy down "BillG" wrote: When formatting a date, I would like to display only the first letter of the weekday. For example, 9/1/08 (39692) would display as "M". I know format "ddd" will display "Mon", but I'd like to have *only* the first letter.... Any ideas? I am using Excel 2007. Thank you! |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I don't think this can be done using formatting. You'd have to use a helper
cell: A1 = some date =LEFT(TEXT(A1,"ddd")) -- Biff Microsoft Excel MVP "BillG" wrote in message ... When formatting a date, I would like to display only the first letter of the weekday. For example, 9/1/08 (39692) would display as "M". I know format "ddd" will display "Mon", but I'd like to have *only* the first letter.... Any ideas? I am using Excel 2007. Thank you! |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=LEFT(TEXT(A1,"ddd"))
"BillG" wrote: When formatting a date, I would like to display only the first letter of the weekday. For example, 9/1/08 (39692) would display as "M". I know format "ddd" will display "Mon", but I'd like to have *only* the first letter.... Any ideas? I am using Excel 2007. Thank you! |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
On Sep 3, 3:14*pm, Teethless mama
wrote: =LEFT(TEXT(A1,"ddd")) "BillG" wrote: When formatting a date, I would like to display only the first letter of the weekday. For example, 9/1/08 (39692) would display as "M". *I know format "ddd" will display "Mon", but I'd like to have *only* the first letter.... Any ideas? I am using Excel 2007. Thank you! Thank you for the quick responses... Looks like I won't be able to use formatting the way I would like to. I was hoping to preserve the actual date value in the cell as I want to use it for something. You have saved me a lot of time trying to make it work. Thanks! |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're Welcome!
"BillG" wrote: On Sep 3, 3:14 pm, Teethless mama wrote: =LEFT(TEXT(A1,"ddd")) "BillG" wrote: When formatting a date, I would like to display only the first letter of the weekday. For example, 9/1/08 (39692) would display as "M". I know format "ddd" will display "Mon", but I'd like to have *only* the first letter.... Any ideas? I am using Excel 2007. Thank you! Thank you for the quick responses... Looks like I won't be able to use formatting the way I would like to. I was hoping to preserve the actual date value in the cell as I want to use it for something. You have saved me a lot of time trying to make it work. Thanks! |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Display weekday when date is MM-DD-YYYY | Excel Discussion (Misc queries) | |||
WEEKDAY() function: display TEXT not numeric weekday | Excel Discussion (Misc queries) | |||
Display Weekday Only | Excel Worksheet Functions | |||
column header changed from letter to number, how return to letter | Excel Discussion (Misc queries) | |||
weekday display in excel | Excel Worksheet Functions |