Macros excel según cantidad de grabaciones que se active hoja
Según el numero de veces que haya grabado el archivo, será la hoja que vea uso el siguiente código, pero no me resulta.
Private Sub Workbook_Open()
HojaC = "INGRESO1"
CeldaC = "A1"
TopeGrab = 14
If Sheets(HojaC).Range(CeldaC).Value > TopeGrab - 7 Then '7
Sheets("INGRESO1").Activate
End If
If Sheets(HojaC).Range(CeldaC).Value > TopeGrab - 6 Then '8
Sheets("INGRESO3").Activate
End If
If Sheets(HojaC).Range(CeldaC).Value > TopeGrab - 5 Then '9
Sheets("INGRESO4").Activate
End If
If Sheets(HojaC).Range(CeldaC).Value > TopeGrab - 1 Then '13
Sheets("INGRESO5").Activate
Else
Sheets(HojaC).Activate
End If
2 Respuestas
Respuesta de Abraham Valencia
1
Respuesta de Programar Excel
1