About 16,100,000 results
Open links in new tab
  1. How do I get the day of week given a date? - Stack Overflow

    I want to find out the following: given a date (datetime object), what is the corresponding day of the week? For instance, Sunday is the first day, Monday: second day.. and so on And then if …

  2. WEEKDAY - Google Docs Editors Help

    WEEKDAY(40909,3) Syntax WEEKDAY(date, [type]) date - The date for which to determine the day of the week. Must be a reference to a cell containing a date, a function returning a date …

  3. Get day of week in SQL Server 2005/2008 - Stack Overflow

    SELECT DATENAME(weekday, GETDATE()) -- Wednesday Or SET DATEFIRST and DATEPART to get the number for the day of the week.

  4. SQL DATEPART(dw,date) need monday = 1 and sunday = 7

    Jul 22, 2014 · DATEPART(dw,ads.date) as weekday I need the result so: Sunday = 7 Monday = 1 etc. Is there any shortcut to do this? Or I will have to do a CASE statement?

  5. WEEKDAY () - AppSheet Help - Google Help

    Jan 1, 2019 · MOD(([Weekday] - WEEKDAY([Date]) - 7), 7) returns the offset of the [Weekday] before or on [Date]. ([Date] + MOD(([Weekday] - WEEKDAY([Date]) + 7), 7)) returns the date …

  6. r - Find the day of a week - Stack Overflow

    date 2012-02-01 2012-02-01 2012-02-02 Is there any way in R to add another column with the day of the week associated with the date? The dataset is really large, so it would not make …

  7. linux - Crontab Day of the Week syntax - Stack Overflow

    Sep 20, 2013 · In crontab does the Day of the Week field run from 0 - 6 or 1 -7? I am seeing conflicting information on this. wikipedia states 0-6 and other sites I have seen are 1-7. Also …

  8. extract weekdays from a set of dates in R - Stack Overflow

    May 31, 2016 · I know using the lubridate package, I can generate the respective weekday for each date of entry. I am now dealing with a large dataset having a lot of date entries and I wish …

  9. How to get the day of week and the month of the year?

    Jan 27, 2011 · @RWC this is nice, but how do I manage to get only the weekday without the rest of the date part? I.E. I want saturday instead of saturday, 9th february 2019.

  10. string - How to get the day of the week from the day number in ...

    Mar 13, 2012 · Given dayNumber is from 0 - 6 representing Monday - Sunday respectively. Can the Date / String objects be used to get the day of the week from dayNumber?