Derrick Rikley
New Member
Hi Everyone,
I have an input box that asks for user input and drops it into a cell.
Dim strUserResponse As String
strUserResponse = InputBox("Please Enter the Build Location - CRK, STC, WPG", "Site")
Worksheets("Sheet1").Range("AA2").value = strUserResponse
I have numerous formuals that are based on this info so if it's typed incorrectly, my sheets won't work. How do I validate their input and return a message if they have entered the wrong info?
Thanks!!!
I have an input box that asks for user input and drops it into a cell.
Dim strUserResponse As String
strUserResponse = InputBox("Please Enter the Build Location - CRK, STC, WPG", "Site")
Worksheets("Sheet1").Range("AA2").value = strUserResponse
I have numerous formuals that are based on this info so if it's typed incorrectly, my sheets won't work. How do I validate their input and return a message if they have entered the wrong info?
Thanks!!!