Ejecutar Macro en todo el libro. Pregunta para Elsa Matilde.
Hola Elsa, como hemos hablado, necesitaría que me ayudaras para poder ejecutar la macro en todo el libro y que dandole al boton se pintara todo el libro segun las condiciones:
Private Sub Worksheet_Change(ByVal Target As Range)
'Cambia el color de la celda COL F - - CONTROLA COL G, PINTA COL I:HA 'Ajustada por Elsamatilde
If Not Intersect(Target, Columns("G")) Is Nothing Then
'Application.EnableEvents = False
Select Case UCase(Cells(Target.Row, "G"))
Case "FORECAST" Cells(Target.Row, "G").Interior.ColorIndex = 20
Range(Cells(Target.Row, "I"), Cells(Target.Row, "HA")).Interior.ColorIndex = 20
Case "ACTUAL" Cells(Target.Row, "G").Interior.ColorIndex = 44
Range(Cells(Target.Row, "I"), Cells(Target.Row, "HA")).Interior.ColorIndex = 44
Case "NEW FORECAST", "NEWFORECAST" Cells(Target.Row, "G").Interior.ColorIndex = 43 Range(Cells(Target.Row, "I"), Cells(Target.Row, "HA")).Interior.ColorIndex = 43
End Select 'Application.EnableEvents = True
End If
End Sub
Muchas gracias por tu ayuda !!!