DatePart Function
DatePart ფუნქცია აბრუნებს თარიღის კონკრეტულ ნაწილს.
DatePart (interval As String, date As Date [, firstDayOfWeek As Integer [, firstWeekOfYear As Integer]]) As Long
დაბრუნებული მნიშვნელობა:
The extracted part for the given date.
 interval - A string expression from the following table, specifying the date interval.
  
    | interval (string value) | ახსნა | 
  
    | yyyy | Year | 
  
    | q | Quarter | 
  
    | m | Month | 
  
    | y | Day of year | 
  
    | w | Weekday | 
  
    | ww | Week of year | 
  
    | d | Day | 
  
    | h | Hour | 
  
    | n | Minute | 
  
    | s | Second | 
 
 date - The date from which the result is calculated.
Date literals allow to specify unambiguous date variables that are independent from the current language. Literals are enclosed between hash signs #. Possible formats are:
    - 
        #yyyy-mm-dd# 
- 
        #mm/dd/yyyy# 
 
 firstdayofweek: An optional parameter that specifies the starting day of a week.
  
    | firstdayofweek value | ახსნა | 
  
    | 0 | Use system default value | 
  
    | 1 | კვირა (საწყისი) | 
  
    | 2 | ორშაბათი | 
  
    | 3 | სამშაბათი | 
  
    | 4 | ოთხშაბათი | 
  
    | 5 | ხუთშაბათი | 
  
    | 6 | პარასკევი | 
  
    | 7 | შაბათი | 
 firstweekofyear: An optional parameter that specifies the starting week of a year.
  
    | firstweekofyear value | ახსნა | 
  
    | 0 | Use system default value | 
  
    | 1 | კვირა 1 არის კვირა იანვრით, პირველი (საწყისად) | 
  
    | 2 | კვირა 1 არის პირველი კვირა, რომელიც შეიცავს ამ კვირის ოთხ ან მეტ დღეს | 
  
    | 3 | კვირა 1 არის პირველი კვირა, რომელიც შეიცავს მხოლოდ ახალი წილის დღეებს | 
 
Sub example_datepart
    MsgBox DatePart("ww", #01/02/2005#) ' displays 2 because weeks start on Sunday
    MsgBox DatePart("ww", #12/31/2005#) ' displays 53
    MsgBox DatePart(date:=#2005-12-30#, interval:="q") ' displays 4
End Sub