Avatar of chris pike
chris pike
Flag for Canada asked on

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 ExcelMicrosoft Office

Avatar of undefined
Last Comment
Roy Cox

8/22/2022 - Mon
Kesavan Jeganarayanan

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

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

ASKER
Thanks guys/ Still working on some issues with the sheet. Get back to you soon.
chris pike

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

Pleased to help.