VBA/Excel/Access/Word/Date Functions/Date — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 16:33, 26 мая 2010
Date returns a Variant/Date containing the current date according to your computer
Sub dateDemo1()
Debug.Print Date
End Sub
VBA Date function and the Mod operator:
Sub dateDemo()
MsgBox Date Mod 7
End Sub