excel vba - How to get the Day Name of Date?

52,697

Solution 1

For your specific request, assuming your date string is formatted as your regional setings:

    sDayName = Format("11/01/2016", "dddd")

If you want the weekday for today:

    sDayName = Format(Date, "dddd")

If you want the weekday for any date in any regional settings

    sDayName = Format(DateSerial(2016, 11, 4), "dddd")
    'change 2016, 11, 4 for your year, month, day values

:)

Solution 2

WEEKDAY Function can be used on this topic and in Vba Codes . For example:

Label2.Caption = WeekdayName(Weekday(TextBox2, 0), False, 0)

I used this function in when I created userform about date entry to active cell.

Share:
52,697
bigbryan
Author by

bigbryan

Updated on July 18, 2020

Comments

  • bigbryan
    bigbryan almost 4 years

    I have a small code that gets the Day Name of the Dates listed in Excel. But the problem is, it's not getting the right Day Name(e.g. Tuesday).

    For Example:

    sDayName = Format(Day(11/1/2016), "dddd")
    

    Then the output produces an incorrect Day Name which is:

    sDayName = "Sunday"
    

    when it's supposed to be "Tuesday". Thanks for the help guys.