Anyone have a code example on GetWeekday? I need something to give me the weekday a date falls on. If I have a date of 6/24/2007, how can I determine what day that is?
Anyone have a code example on GetWeekday? I need something to give me the weekday a date falls on. If I have a date of 6/24/2007, how can I determine what day that is?
You don't mention what language you're using but if it's VB/VBA why not just
use the WeekDay function, which takes a date and returns an int from 1 to 7
representing the day of the week that date falls on.
Anyone have a code example on GetWeekday? I need something to give me the
weekday a date falls on. If I have a date of 6/24/2007, how can I determine
what day that is?
Thanks,
Dennis
You don't mention what language you're using but if it's VB/VBA why not just use the WeekDay function, which takes a date and returns an int from 1 to 7 representing the day of the week that date falls on.
Anyone have a code example on GetWeekday? I need something to give me the weekday a date falls on. If I have a date of 6/24/2007, how can I determine what day that is?