Macros y checkboxes

RaulMD

New Member
Joined
Dec 6, 2004
Messages
2
Hola a todos, tengo una consulta sobre una macro que estoy creando que supongo que debe ser bastante simple para alguien con un poco de experiencia en el asunto.

La cuestión es que tengo una serie de 50 hojas. Quiero que una de ellas sirva de índice y que vía checkboxes oculte y muestre una hoja específica. Hasta el momento he creado esta macro que oculta y muestra cada hoja:

Sub Macro1()

Sheets("P1a").Visible = Range("Partidos!K2").Value

If Sheets("P1a").Visible = True Then
Sheets("P1a").Activate

Else

Sheets("Partidos").Activate

End If

End Sub

Siendo:

P1a la primera de las hojas
Partidos la hoja índice
K2 la celda a la que está ligado el checkbox 1.

Mi duda radica en si es que tengo que hacer una macro diferente para cada checkbox o si puedo hacer que la misma macro tome los valores P1a y K2 variables según el checkbox que elija.

Muchas gracias de antemano la ayuda prestada,
Raúl
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
agrega una variable por ejemplo
dim nombhoja as string
y substituyela en el nombre de la hoja ejemplo
sheets(nombhoja) en lugar de sheets("P1A")

espero te sirva
 
Upvote 0

Forum statistics

Threads
1,223,948
Messages
6,175,575
Members
452,652
Latest member
eduedu

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top