No me imprime esta condicional VBA
Tengo así
'imprime dejando en blanco los totales y según rangos usados
If [M58] = "" Then
ActiveSheet.PageSetup.PrintArea = "$C$1:$C$41"
ElseIf [M58] >= 1 Then
'Agregar formato blanco
Range("T32:T33").Font.Color = RGB(255, 255, 255)
Range("V32:V33").Font.Color = RGB(255, 255, 255)
ActiveSheet.PageSetup.PrintArea = "$C$1:$V$83"
ElseIf [M100] >= 1 Then
'Agregar formato en blanco
Range("T32:T33").Font.Color = RGB(255, 255, 255)
Range("V32:V33").Font.Color = RGB(255, 255, 255)
Range("T74:T75").Font.Color = RGB(255, 255, 255)
Range("V74:V75").Font.Color = RGB(255, 255, 255)
ActiveSheet.PageSetup.PrintArea = "$C$1:$V$126"
End If
¿Y no me imprime que me falta?
1 respuesta
Respuesta de Elsa Matilde
1