Hi,
Here is my code:
Does anyone know how or if it can be amended so it allows lowercase letters to be accepted?
I only want the uppercase letters to show in the dropdown list.
Hope it makes sense.
Thanks
Dan
Here is my code:
Code:
With ActiveCell.Validation
.Delete
.Add Type:=xlValidateList, AlertStyle:=xlValidAlertStop, _
Operator:=xlBetween, Formula1:="D, E, F, G, H, J, K, L, M, N, P"
.IgnoreBlank = True
.InCellDropdown = True
.InputTitle = ""
.ErrorTitle = ""
.InputMessage = ""
.ErrorMessage = ""
.ShowInput = True
.ShowError = True
End With
Does anyone know how or if it can be amended so it allows lowercase letters to be accepted?
I only want the uppercase letters to show in the dropdown list.
Hope it makes sense.
Thanks
Dan