Is it possible to manipulate the components (year, month, day) of a date in VBA? I'd like a function that, given a day, a month, and a year, returns the corresponding date.
|
|
|
|
|
|
|
would be what you are looking for.
|
||
|
|
|
|
You want DateSerial:
|
||
|
|
|
|
There are several date functions in VBA - check this site DateSerial(YEAR, MONTH, DAY) |
||
|
|
