About
Pricing
Community
Teams
Start Free Trial
Log in
chris pike
asked on
12/14/2019
Date prompt fr new player to add to sheet 1 column E
I have a sheet, and need to add a prompt to input start date for tne player.
Microsoft Excel
Microsoft Office
5
1
Last Comment
Roy Cox
8/22/2022 - Mon
Kesavan Jeganarayanan
12/14/2019
Can try this simple VBA script
Sub Testing()
Dim x As Date
x = InputBox("Enter date")
If IsDate(x) Then Range("A1").Value = CDate(x)
End Sub
ASKER CERTIFIED SOLUTION
Roy Cox
12/14/2019
THIS SOLUTION ONLY AVAILABLE TO MEMBERS.
View this solution by signing up for a free trial.
Members can start a 7-Day free trial and enjoy unlimited access to the platform.
See Pricing Options
Start Free Trial
GET A PERSONALIZED SOLUTION
Ask your own question & get feedback from real experts
Find out why thousands trust the EE community with their toughest problems.
chris pike
12/19/2019
ASKER
Thanks guys/ Still working on some issues with the sheet. Get back to you soon.
chris pike
1/12/2020
ASKER
Thanks Roy
This is the best money I have ever spent. I cannot not tell you how many times these folks have saved my bacon. I learn so much from the contributors.
rwheeler23
Roy Cox
1/12/2020
Pleased to help.
Sub Testing()
Dim x As Date
x = InputBox("Enter date")
If IsDate(x) Then Range("A1").Value = CDate(x)
End Sub