Hi,
I've been busy with this for a couple of hours but can't seem to get it to work so thought I would ask it here hoping for a solution.
I have this form with a bunch of questions with mainly 'Yes' or 'No' answer so I'm using the list function for this in Excel. They can select 'Yes' or 'No' but they can also type it themselve. However when they type 'yes' or 'no' (lowercase) the data valiation will not accept it (as it needs to be proper case).
Is there any way with vba I can change the value automatically so when they enter 'yes' it is changed to 'Yes'?
I think you can do it with this function: Target.Value = STRCONV(Target.Value,VBPROPERCASE).
FIn my example cell E16 has a Yes or No answer and needs to be changed automatically to PROPER case if they enter lower or upper case.
Much appreciated if someone can help me.
I've been busy with this for a couple of hours but can't seem to get it to work so thought I would ask it here hoping for a solution.
I have this form with a bunch of questions with mainly 'Yes' or 'No' answer so I'm using the list function for this in Excel. They can select 'Yes' or 'No' but they can also type it themselve. However when they type 'yes' or 'no' (lowercase) the data valiation will not accept it (as it needs to be proper case).
Is there any way with vba I can change the value automatically so when they enter 'yes' it is changed to 'Yes'?
I think you can do it with this function: Target.Value = STRCONV(Target.Value,VBPROPERCASE).
FIn my example cell E16 has a Yes or No answer and needs to be changed automatically to PROPER case if they enter lower or upper case.
Much appreciated if someone can help me.