Veja se esta ajuda :
Dim Oldcell As Range
Dim NewCell As Range
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Oldcell Is Nothing Then
Set Oldcell = Target
Oldcell.Interior.ColorIndex = 8
Oldcell.Font.Size = 14
Exit Sub
Else
Set NewCell = Target
Oldcell.Interior.ColorIndex = xlNone
Oldcell.Font.Size = 8
NewCell.Interior.ColorIndex = 8
NewCell.Font.Size = 14
End If
Set Oldcell = Target
End Sub
Altera o tamanho quando selecionamos, e apos selecionar outra tira a formatação da anterior e aplica na nova seleção.
[]s
Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
Postado : 06/02/2016 7:11 am