Microsoft Excel
--
Questions
--
Followers
Top Experts
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.
Zero AI Policy
We believe in human intelligence. Our moderation policy strictly prohibits the use of LLM content in our Q&A threads.
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
Sub Testing()
Dim x As Date
x = InputBox("Enter date")
If IsDate(x) Then Range("A1").Value = CDate(x)
End Sub
ASKER CERTIFIED SOLUTION
membership
Log in or create a free account to see answer.
Signing up is free and takes 30 seconds. No credit card required.
Thanks guys/ Still working on some issues with the sheet. Get back to you soon.
Thanks Roy






EARN REWARDS FOR ASKING, ANSWERING, AND MORE.
Earn free swag for participating on the platform.
Pleased to help.
Microsoft Excel
--
Questions
--
Followers
Top Experts
Microsoft Excel topics include formulas, formatting, VBA macros and user-defined functions, and everything else related to the spreadsheet user interface, including error messages.