View Single Post
  #3   Report Post  
Jason Morin
 
Posts: n/a
Default

Right-click the sheet tab, go to View Code, and insert
the code below:

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
With Target
If .Column = 1 Then '1 = col. A, 2 = col. B, etc.
If .Count = 1 Then
If .Value = "y" Or .Value = "n" And _
.Value = LCase(.Value) Then
Application.EnableEvents = False
.Value = UCase(.Value)
Application.EnableEvents = True
End If
End If
End If
End With
End Sub

----
Press ALT+Q to return to XL. The code is set to evaluate
entries in col. A (1). Change if necessary.

HTH
Jason
Atlanta, GA

-----Original Message-----
In Excel I have a column which asks for a Y or N

response. If the user
inputs y or n in lower case Can I have Excel convert it

to Upper Case?
.