Hi
see below
1) How do you set the cells in Excel to auto change all
letters entered to be all caps regardless of how it was
entered?
This can only (AFAIK) be achieved with VBA. E.g. put the following
code in your worksheet module. It will automatically change all entries
to upper case in column A:
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Intersect(Target, Me.Range("A:A")) Is Nothing Then Exit Sub
On Error GoTo CleanUp:
With Target
If .Value <> "" Then
Application.EnableEvents = False
.value = UCase(.value)
End If
End With
CleanUp:
Application.EnableEvents = True
End Sub
2) How do you set Spell Checker to run after every time
you exit an individual cell in Excel?
quite similar to the above. I just added a new line for spellchecking.
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Intersect(Target, Me.Range("A:A")) Is Nothing Then Exit Sub
On Error GoTo CleanUp:
With Target
If .Value <> "" Then
Application.EnableEvents = False
.value = UCase(.value)
End If
.CheckSpelling ' Spellcheck added
End With
CleanUp:
Application.EnableEvents = True
End Sub