Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
Hi all,
I use =TEXT(H12,"dddd") to calculate the day of week for a date. Is there any way I can have the first letter of the day show, instead of the whole word? Monday becomes M; Tuesday becomes T, etc. |
#2
![]() |
|||
|
|||
![]()
=LEFT(TEXT(H12,"ddd"))
-- Regards Roger Govier "Robbyn" wrote in message ... Hi all, I use =TEXT(H12,"dddd") to calculate the day of week for a date. Is there any way I can have the first letter of the day show, instead of the whole word? Monday becomes M; Tuesday becomes T, etc. |
#3
![]() |
|||
|
|||
![]()
=left(TEXT(H12,"DDDD"),1)
-- Gary's Student "Robbyn" wrote: Hi all, I use =TEXT(H12,"dddd") to calculate the day of week for a date. Is there any way I can have the first letter of the day show, instead of the whole word? Monday becomes M; Tuesday becomes T, etc. |
#4
![]() |
|||
|
|||
![]()
Try...
=LEFT(TEXT(H12,"ddd")) Hope this helps! In article , Robbyn wrote: Hi all, I use =TEXT(H12,"dddd") to calculate the day of week for a date. Is there any way I can have the first letter of the day show, instead of the whole word? Monday becomes M; Tuesday becomes T, etc. |
#5
![]() |
|||
|
|||
![]()
=LOOKUP(WEEKDAY(H12),{1,2,3,4,5,6,7},{"S","M","T", "W","T","F","S"})
Vaya con Dios, Chuck, CABGx3 "Robbyn" wrote in message ... Hi all, I use =TEXT(H12,"dddd") to calculate the day of week for a date. Is there any way I can have the first letter of the day show, instead of the whole word? Monday becomes M; Tuesday becomes T, etc. |
#6
![]() |
|||
|
|||
![]()
Thanks much all! I went with the simplist formula: =LEFT(TEXT(H$12,"ddd"))
One more quick question. If H$12 is blank, how do I make sure the cell with the formula remains blank? This didn't work: =IF(LEFT(TEXT(L$12,"ddd"))="","",LEFT(TEXT(L$12,"d dd"))) "Robbyn" wrote: Hi all, I use =TEXT(H12,"dddd") to calculate the day of week for a date. Is there any way I can have the first letter of the day show, instead of the whole word? Monday becomes M; Tuesday becomes T, etc. |
#7
![]() |
|||
|
|||
![]()
if(H12="","",LEFT(TEXT(H$12,"ddd")))
-- Gary's Student "Robbyn" wrote: Thanks much all! I went with the simplist formula: =LEFT(TEXT(H$12,"ddd")) One more quick question. If H$12 is blank, how do I make sure the cell with the formula remains blank? This didn't work: =IF(LEFT(TEXT(L$12,"ddd"))="","",LEFT(TEXT(L$12,"d dd"))) "Robbyn" wrote: Hi all, I use =TEXT(H12,"dddd") to calculate the day of week for a date. Is there any way I can have the first letter of the day show, instead of the whole word? Monday becomes M; Tuesday becomes T, etc. |
#8
![]() |
|||
|
|||
![]()
Thanks!
"Gary's Student" wrote: if(H12="","",LEFT(TEXT(H$12,"ddd"))) -- Gary's Student "Robbyn" wrote: Thanks much all! I went with the simplist formula: =LEFT(TEXT(H$12,"ddd")) One more quick question. If H$12 is blank, how do I make sure the cell with the formula remains blank? This didn't work: =IF(LEFT(TEXT(L$12,"ddd"))="","",LEFT(TEXT(L$12,"d dd"))) "Robbyn" wrote: Hi all, I use =TEXT(H12,"dddd") to calculate the day of week for a date. Is there any way I can have the first letter of the day show, instead of the whole word? Monday becomes M; Tuesday becomes T, etc. |
#9
![]() |
|||
|
|||
![]()
Try...
=IF(N(L$12),LEFT(TEXT(L$12,"ddd")),"") Hope this helps! In article , Robbyn wrote: Thanks much all! I went with the simplist formula: =LEFT(TEXT(H$12,"ddd")) One more quick question. If H$12 is blank, how do I make sure the cell with the formula remains blank? This didn't work: =IF(LEFT(TEXT(L$12,"ddd"))="","",LEFT(TEXT(L$12,"d dd"))) "Robbyn" wrote: Hi all, I use =TEXT(H12,"dddd") to calculate the day of week for a date. Is there any way I can have the first letter of the day show, instead of the whole word? Monday becomes M; Tuesday becomes T, etc. |
#10
![]() |
|||
|
|||
![]()
No confusion between Saturday and Sunday and Tuesday and Thursday?
-- Regards, RD --------------------------------------------------------------------------- Please keep all correspondence within the NewsGroup, so all may benefit ! --------------------------------------------------------------------------- "Robbyn" wrote in message ... Thanks! "Gary's Student" wrote: if(H12="","",LEFT(TEXT(H$12,"ddd"))) -- Gary's Student "Robbyn" wrote: Thanks much all! I went with the simplist formula: =LEFT(TEXT(H$12,"ddd")) One more quick question. If H$12 is blank, how do I make sure the cell with the formula remains blank? This didn't work: =IF(LEFT(TEXT(L$12,"ddd"))="","",LEFT(TEXT(L$12,"d dd"))) "Robbyn" wrote: Hi all, I use =TEXT(H12,"dddd") to calculate the day of week for a date. Is there any way I can have the first letter of the day show, instead of the whole word? Monday becomes M; Tuesday becomes T, etc. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Newbie With A Question | Excel Worksheet Functions | |||
Anybody Help with previous question | Excel Discussion (Misc queries) | |||
Hints And Tips For New Posters In The Excel Newsgroups | Excel Worksheet Functions | |||
Question about combining data from multiple workbooks into one rep | Excel Discussion (Misc queries) | |||
An easy macro question and one I believe to be a little more diffi | Excel Worksheet Functions |