VBA/Excel/Access/Word/Date Functions/Year — различия между версиями

Материал из VB Эксперт
Перейти к: навигация, поиск
м (1 версия)
 
м (1 версия)
 
(нет различий)

Текущая версия на 12:48, 26 мая 2010

Use year function to get the year

 
  Sub AgeCalc2()
      " variable declaration
      Dim FullName$
      Dim DateOfBirth As Date
      Dim age%
      " assign values to variables
      FullName$ = "John Smith"
      DateOfBirth = #1/3/1967#
     " calculate age
     age% = Year(Now()) - Year(DateOfBirth)
     " print results to the Immediate window
     MsgBox FullName$ & "is" & age% & " years old."
End Sub



Year(Date)

 
Sub Main8()
   Debug.Print "Today"s date is: " & Date
   Debug.Print "The year is: " & Year(Date)
End Sub