Prints the Quarter Number : DatePart « Date Functions « VBA / Excel / Access / Word






Prints the Quarter Number

 
Sub DatePartExample()
    Debug.Print DatePart("Q", Now)
End Sub

 








Related examples in the same category

1.Using DatePart(interval, date[,firstdayofweek[, firstweekofyear]]) to Parse Dates
2.DatePart("q", Now)
3.DatePart("m", Now)
4.DatePart("d", Now)
5.DatePart("w", Now)
6.DatePart("ww", Now)
7.DatePart("h", Now)
8.DatePart("n", Now)
9.DatePart("s", Now)
10.DatePart returns 'Prints the Year
11.Prints the Month Number
12.Prints the Day of the Year
13.Prints the Week of the Year
14.Break a single date down to its individual components using the DatePart function