como puedo = un comando, tengo demaciados if con muchos comandos y me gustaria declarar al principio del porograma y no tener que en cada if declarar cada comando
en este momento los if tiene esta estructura
====================================================
If ActiveSheet.Range("a1").Value = ActiveSheet.Range("a2").Value Then
ActiveSheet.Range("D6:i6").Interior.Color = RGB(0, 0, 255)
ActiveSheet.Range("D7:i7").Interior.Color = RGB(0, 0, 255)
ActiveSheet.Range("D11:i11").Interior.Color = RGB(0, 0, 255)
=====================================================
y me gustaria tenerlo como aparece acontinuacion
=====================================================
a=ActiveSheet.Range("D6:i6").Interior.Color = RGB(0, 0, 255)
b=ActiveSheet.Range("D7:i7").Interior.Color = RGB(0, 0, 255)
c=ActiveSheet.Range("D11:i11").Interior.Color = RGB(0, 0, 255)
If ActiveSheet.Range("a1").Value = ActiveSheet.Range("a2").Value Then
a
b
c
end if
===================================================
saludos
<!-- / message -->
en este momento los if tiene esta estructura
====================================================
If ActiveSheet.Range("a1").Value = ActiveSheet.Range("a2").Value Then
ActiveSheet.Range("D6:i6").Interior.Color = RGB(0, 0, 255)
ActiveSheet.Range("D7:i7").Interior.Color = RGB(0, 0, 255)
ActiveSheet.Range("D11:i11").Interior.Color = RGB(0, 0, 255)
=====================================================
y me gustaria tenerlo como aparece acontinuacion
=====================================================
a=ActiveSheet.Range("D6:i6").Interior.Color = RGB(0, 0, 255)
b=ActiveSheet.Range("D7:i7").Interior.Color = RGB(0, 0, 255)
c=ActiveSheet.Range("D11:i11").Interior.Color = RGB(0, 0, 255)
If ActiveSheet.Range("a1").Value = ActiveSheet.Range("a2").Value Then
a
b
c
end if
===================================================
saludos
<!-- / message -->