add the current TIME to a date that is entered on a userform

kbishop94

Active Member
Joined
Dec 5, 2016
Messages
458
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
My code:

Code:
With Cells(llRow, 2)    
    .Value = CDate(txtDateADD.Value)
    .NumberFormat = "mm/dd/yyyy hh:mm"
End With

txtDateADD is a textbox where the user enters a date.

what I need to go into the cell (llRow, 2) when a commandbutton is clicked and the data is copied to my worksheet, is a date & time that looks like and is formatted like this:

1/15/2019 11:33:52 AM

but what i get is this:

1/15/2019


An exact time is not important... just whatever the current time (now) is will suffice.

Please and Thank you for your assistance.

Keith
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
My code:

Code:
With Cells(llRow, 2)    
    .Value = CDate(txtDateADD.Value) [B][B][COLOR="#FF0000"]+ Time[/COLOR][/B][/B]
    .NumberFormat = "mm/dd/yyyy hh:mm"
End With

txtDateADD is a textbox where the user enters a date.

what I need to go into the cell (llRow, 2) when a commandbutton is clicked and the data is copied to my worksheet, is a date & time that looks like and is formatted like this:

1/15/2019 11:33:52 AM

but what i get is this:

1/15/2019


An exact time is not important... just whatever the current time (now) is will suffice.
Try adding what I show in red above and see if that works for you.
 
Upvote 0
Try adding what I show in red above and see if that works for you.


Thank you Rick... worked perfectly sir.
icon14.png
 
Upvote 0

Forum statistics

Threads
1,214,653
Messages
6,120,748
Members
448,989
Latest member
mariah3

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top