tags:

views:

56

answers:

1

Hi i am trying to get the current Year using vba . Is There is any Pre- Build function is available to find out the Current Year , Thanks In advance

+6  A: 
Year(Date)

Year(): Returns the year portion of the date argument.
Date: Current date only.

Explanation of both of these functions from here.

Adam Bernier