Be the first user to complete this post

  • 0
Add to List

VBA-Excel: Date-Time Functions – Day()

Description:

The Day function takes date as a parameter and returns a number between 1 and 31, that is the day of the month.

Format:

Day(strDate)

Arguments:
  • strDate
    • Manda­tory
    • Type: Date
    • Date, whose day needs to be calculated.

Example:

Function FnDay()

   Dim strDate

   strDate = CDate("15-July-2013")    

   MsgBox "Day of " & strDate & " is -> " & Day(strDate)

End Function
DAY()
DAY()



Also Read:

  1. VBA-Excel: Create Array using Array() Function
  2. Excel-VBA : Range - Lock/Unlock Specific Cells
  3. VBA-Excel : Strings Functions – Left
  4. VBA-Excel: Get all the WeekDays or Working days in Specified Date Range, (excluding Satudays and Sundays)
  5. VBA-Excel: Array Functions – Join() – Converts Array to String