Hello all,

Is there an easy way to add months to a date field?

Example:
This code adds 15 days to begin_date.
----------------------
dim Begin_Date, End_Date as Date

Begin_Date = Date

End_Date = Begin_Date + 15
---------------------

What I want is to add months or years to begin_date in a simple way...


Is that possible??