.
Osvaldo, esquece, o código abaixo já funcionou!! ... Valeu!! ... Estranho, agora abri o arquivo, e está tudo como gostaria (não está mais colorindo a coluna A até o final, nem a linha 1) !!
.
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
    Dim RngRow As Range, RngCol As Range, RngFinal As Range
    Range("B2:AC" & Cells(Rows.Count, 1).End(3).Row).Interior.ColorIndex = xlNone
    Range("A1:A" & Cells(Rows.Count, 1).End(3).Row).Interior.ColorIndex = 4
    Range("A1:AC1").Interior.ColorIndex = 4
    If Target.Column < 3 Or Target.Column > 29 Then Exit Sub
    If Target.Row < 3 Or Target.Row > Cells(Rows.Count, 1).End(3).Row Then Exit Sub
    Set RngRow = Range("A" & Target.Row, Target)
    Set RngCol = Range(Cells(1, Target.Column), Target)
    Set RngFinal = Union(RngRow, RngCol)
    RngFinal.Interior.ColorIndex = 6
End Sub
PS: se os moderadores tiverem acesso para alterar o título do tópico (ou acrescentar uma tag para pesquisa futura), mude para AGENDA PARA CONSULTÓRIO!!
                                                                                                	Existem mil maneiras de preparar Neston. Invente a sua!
http://www.youtube.com/ExpressoExcel
 
                    
                    	
                            Postado : 29/05/2016 9:32 am