I want to ask a user for a date via an input box.
the format of the date will remain consistant mm-dd-yy
and then separate out the parts into 3 variables. so
month = mm
day = dd
year = yy
what vba code would assign the month, day and year from the date input?
HTML:
date = InputBox("enter date of report")
the format of the date will remain consistant mm-dd-yy
and then separate out the parts into 3 variables. so
month = mm
day = dd
year = yy
what vba code would assign the month, day and year from the date input?