MACROS

Copper Contributor

Hola, alguien me puede ayudar con los botones en Excel, necesito hacer que un botón me conduzca a una hoja nueva pero no se la formula que tengo que insertar en visual basic para lograrlo. Ayuda por favor.

2 Replies

@almeng 

 

Many ways lead to Rome ... one way is via hyperlink:=HYPERLINK("#'Tabelle3'!C7";"Spring!")

Another way with macros:

Private Sub CommandButton1_Click()
Application.Goto Sheets("Tabelle2").Range("C25")
End Sub

 

I would be happy to find out if I could help.

 

Nikolino

I know I don't know anything (Socrates)