Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
column a will be filled in with dates as needed; how do i get column b to
automatically fill in the corresponding day of the week to match that date? |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
column A column B 2/5/2007 =TEXT(A2,"ddd") = Tue =TEXT(A2,"dddd") = Tuesday Regards FSt1 "Windy" wrote: column a will be filled in with dates as needed; how do i get column b to automatically fill in the corresponding day of the week to match that date? |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
If you want the name of the day (Monday, etc.) then enter =A1 in cell B1 and
custom format it like "dddd". If you want the No of the day then enter =WEEKDAY(A1,2) See Help on the second argument (numbering style of the days of the week) Regards, Stefi Windy ezt *rta: column a will be filled in with dates as needed; how do i get column b to automatically fill in the corresponding day of the week to match that date? |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() =IF(A1="","",CHOOSE(WEEKDAY(A1),"Sun","Mon","Tue", "Wed","Thu","Fri","Sat")) Windy wrote: column a will be filled in with dates as needed; how do i get column b to automatically fill in the corresponding day of the week to match that date? |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
When I copy this formula down column b, and column a hasn't been filled in
yet, I get a column of "Saturdays". How can I hide the formula so column b stays blank until column a is filled in? "FSt1" wrote: hi column A column B 2/5/2007 =TEXT(A2,"ddd") = Tue =TEXT(A2,"dddd") = Tuesday Regards FSt1 "Windy" wrote: column a will be filled in with dates as needed; how do i get column b to automatically fill in the corresponding day of the week to match that date? |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could use a formula:
=if(a1="","",text(a1,"dddd")) But I'd just format that column of dates: Select the column Format|cells|number tab Custom: mm/dd/yyyy dddd (or what you like) Windy wrote: column a will be filled in with dates as needed; how do i get column b to automatically fill in the corresponding day of the week to match that date? -- Dave Peterson |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
=If(A1="","",TEXT(A2,"ddd"))
Windy wrote: When I copy this formula down column b, and column a hasn't been filled in yet, I get a column of "Saturdays". How can I hide the formula so column b stays blank until column a is filled in? "FSt1" wrote: hi column A column B 2/5/2007 =TEXT(A2,"ddd") = Tue =TEXT(A2,"dddd") = Tuesday Regards FSt1 "Windy" wrote: column a will be filled in with dates as needed; how do i get column b to automatically fill in the corresponding day of the week to match that date? |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
hi
=if(A2="","",Text(A2,"dddd")) Regards FSt1 "Windy" wrote: When I copy this formula down column b, and column a hasn't been filled in yet, I get a column of "Saturdays". How can I hide the formula so column b stays blank until column a is filled in? "FSt1" wrote: hi column A column B 2/5/2007 =TEXT(A2,"ddd") = Tue =TEXT(A2,"dddd") = Tuesday Regards FSt1 "Windy" wrote: column a will be filled in with dates as needed; how do i get column b to automatically fill in the corresponding day of the week to match that date? |
#9
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Your good work is still helping tens of people out there!
Just what I needed for converting dates so I can do pivot tables on months! Happy New Year! "FSt1" wrote: hi =if(A2="","",Text(A2,"dddd")) Regards FSt1 "Windy" wrote: When I copy this formula down column b, and column a hasn't been filled in yet, I get a column of "Saturdays". How can I hide the formula so column b stays blank until column a is filled in? "FSt1" wrote: hi column A column B 2/5/2007 =TEXT(A2,"ddd") = Tue =TEXT(A2,"dddd") = Tuesday Regards FSt1 "Windy" wrote: column a will be filled in with dates as needed; how do i get column b to automatically fill in the corresponding day of the week to match that date? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Identifying unique dates in a range of cells containing dates... | Excel Discussion (Misc queries) | |||
Identifying unique dates within a range of cells containing dates | Excel Discussion (Misc queries) | |||
need to convert list of dates to count no. of dates by week | Excel Worksheet Functions | |||
Calculating number of days between two dates that fall between two other dates | Excel Discussion (Misc queries) | |||
Charting data against dates where dates are not at fixed intervals | Charts and Charting in Excel |