This follows on from a previous question here where I asked how to develop an input box that required a data to be entered in a specific format by the user (eg: Q4 2010)
I now need to take the first 2 character of the user input (always to be Q1, Q2, Q3 or Q4) and change the text in another cell depending on the outcome. Specifically, if the user enters a string starting with Q1 or Q3, I need it to copy <insert text1> into a cell in Sheet3, and if they enter Q2 or Q4 it copies <insert text2> in the same cell instead.
I have no idea how to consider only part of an input, so any help most welcome 🙂
You could try this to populate
A1of a sheet calledSheet3with the two strings[Updated as per msgbox asking for user input in specific format to be bullet proof using Regular Expressions]