Pregunta en
Microsoft Excel
y en 2 temas más
Como hacer que esta macro al momento de detenerse, el color del texto sea blanco?
Public RunWhen As Double Sub Parpadear() Application.ScreenUpdating = False ThisWorkbook.Worksheets("NEW STYLES").Unprotect With ThisWorkbook.Worksheets("NEW STYLES").Range("B2:B3").Font If .ColorIndex = 44 Then .ColorIndex = 46 Else .ColorIndex = 44...
Pregunta en
Microsoft Excel
y en 1 temas más
¿Cómo soluciono el error "RUN-TIME ERROR '9' " subscript out of range? Se genera al tener dos libros abiertos
Pregunta en
Microsoft Excel
y en 2 temas más
Buen día, ¿Alguien sabe como podría quitarle el error run time 1004 a esta macro?
Public RunWhen As Double Sub Parpadear() With ThisWorkbook.Worksheets("NEW STYLES").Range("B2").Font If .ColorIndex = 48 Then .ColorIndex = 2 Else .ColorIndex = 48 End If End With RunWhen = Now + TimeSerial(0, 0, 1) Application.OnTime RunWhen, "'" &...