Johnmus,
How about instead of a worksheet deactivate or activate event, you update it as the cell contents change in the desired areas with a worksheet change event, like so:
Private Sub Worksheet_Change(ByVal Target As Range)
Dim UsedRange1 As Range: Set UsedRange1 = Range("B6:C22")
Dim UsedRange2 As Range: Set UsedRange2 = Range("B24:G36")
If Not Intersect(Target, UsedRange1) Is Nothing Or Not Intersect(Target, UsedRange2) Is Nothing Then
Target = WorksheetFunction.Trim(Target)
End If
End Sub
Hope that helps,
~tigeravatar
Bookmarks