I’ve got three textboxes (respectively for Date, Hour, Minute)
I need to paste the final Day/Month/Year Hour:Minute to a cell in Excel
with it formatted as a date
sDate = Format(myDate.Value & txtHour.Value & txtMinute.Value, "MM/DD/YYYY HH:MM")
.Cells(iRow, iCol + 1).Value = sDate
Help me out here? I’m scratching my head.
It’s coming out like this.
04/26/20121437
If your date is already in the format of 04/26/27 you should be able to do something like
or