Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Selection.CountLarge = 1 Then
'MsgBox "Cell " & Target.Address & " clicked."
If Not LastCell Is Nothing Then
If LastCell.Row <> ActiveCell.Row Then
'MsgBox "Set Entire Row Height of " & LastCell.Address & " from " & LastCell.RowHeight & " to a smaller value"
LastCell.EntireRow.RowHeight = 12.75
Set LastCell = Nothing
End If
End If
'MsgBox "Set Entire Row from " & ActiveCell.RowHeight & " to AutoFit"
ActiveCell.EntireRow.AutoFit
Set LastCell = ActiveCell
End If
End Sub