About 19,500,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. Get day of week in SQL Server 2005/2008 - Stack Overflow

    Jul 10, 2009 · If I have a date 01/01/2009, I want to find out what day it was e.g. Monday, Tuesday, etc... Is there a built-in function for this in SQL Server 2005/2008? Or do I need to …

  3. 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 …

  4. Get Previous business day in a week with that of current Business …

    Oct 8, 2025 · SELECT DATEADD(DAY, CASE DATENAME(WEEKDAY, GETDATE()) WHEN 'Sunday' THEN -2 WHEN 'Monday' THEN -3 ELSE -1 END , DATEDIFF(DAY, 0, …

  5. powerbi - DAX formula to determine if a given date is a weekday …

    Dec 12, 2022 · I want to create a measure in Power BI that tells me if a given date is a weekday or a weekend day. I have the following code that I found online: Day Type = …

  6. WEEKDAY () - AppSheet 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 …

  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. r - Find the day of a week - Stack Overflow

    Feb 1, 2012 · Let's say that I have a date in R and it's formatted as follows. 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 …

  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. date - Day of the week function in SAS - Stack Overflow

    Mar 4, 2019 · Is there an inbuilt function in SAS that gives the text day of the week? Such as Monday, Tuesday etc from a date variable? So far, I have just found the weekday function, …