No ejecutar macro por texto en celda

En mi celda I1 tengo la siguiente función

=SI.ERROR(('[Cuentas por Cobrar.xlsm]TKT'!$S$2)|"NEGATIVO")

Por favor como seria que antes de ejecutar mi macro1 desde mi boton, el cual lo tengo en la misma hoja,  revise si la celda mencionada tiene el texto NEGATIVO no ejecute mi macro?

1 Respuesta

Respuesta
1

Puedes intentar lo siguiente: coloca este código dentro de tu macro

if workbooks("Cuentas por Cobrar").sheets("TKT").Range("S2")="Negativo" then
exit sub
end if

Negativo no funciona, y el código lo tengo en mi hoja original no en cuentas por cobrar

Perdon, talves entendi mal. Prueba utilizando el siguiente còdigo:

if range("I1")="Negativo" then
exit sub
end if

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas