I am using the following formula to show the weekday in a given cell. Assume the date is in column A (example: 1-10-2011 in A1) and the output is in column B (example: Monday in B1).
My question is if I have a large number of dates in column A how can I automatically have the day of the week output in column B without copying the formula in each cell in column B?
Thank you.
Code:
=CHOOSE(WEEKDAY(A1), "Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday")
My question is if I have a large number of dates in column A how can I automatically have the day of the week output in column B without copying the formula in each cell in column B?
Thank you.