Edición de esquemas

lu_argenitna

Board Regular
Joined
Apr 4, 2006
Messages
106
Hola!
Quería saber si es posible poner títulos a los esquemas que uno hace en excel. Es decir, se puede poner algo al lado de la crucecita para deplegar el esquema?
Y otra, hay un comando en visual para desplegar o ocultar un esquema?
Necesito esto porque la gente que va a recibir el archivo no es muy avanzada en excel y no creo que entiendan que significa una crucecita en la barra.
Muchas gracias!!!!
 
Lo puse y en vez de ocultar me lo muestra. Es decir, yo grabo algo con el quema oculto (por lo tanto con el signo + habilitado) y al correr la macro me aparece desplegado.
Por que sera?
 
Upvote 0

Excel Facts

Excel Can Read to You
Customize Quick Access Toolbar. From All Commands, add Speak Cells or Speak Cells on Enter to QAT. Select cells. Press Speak Cells.
El código es:
Sheets("Base").Select
ActiveWindow.FreezePanes = False
ActiveSheet.Outline.ShowLevels 1
Columns("a:z").Select
Selection.EntireColumn.Hidden = False
Columns("d:d").Select
Selection.EntireColumn.Hidden = True
Columns("e:e").Select
Selection.EntireColumn.Hidden = True
Columns("v:w").Select
Selection.EntireColumn.Hidden = True
Range("c3").Select
ActiveWindow.FreezePanes = True
Range("b2").Select
If Range("f1").Value = 1 Then
Columns("u:u").Select
Selection.EntireColumn.Hidden = True
Range("b2").Select
ElseIf Range("f1").Value = 2 Then
Range("b2").Select
End If

Y mi intencion es que el esquema se muestre solo si lo necesita el que acciona la macro.
Muchisimas gracias!!!!
 
Upvote 0
Luciana,

Pruebe el siguiente:
Code:
    Sheets("Base").Select
    ActiveWindow.FreezePanes = False
    Columns("a:z").EntireColumn.Hidden = False
    Columns("d:e").EntireColumn.Hidden = True
    Columns("v:w").EntireColumn.Hidden = True
    Range("c3").Select
    ActiveWindow.FreezePanes = True
    Columns("u:u").EntireColumn.Hidden = (Range("f1") = 1)
    ActiveSheet.Outline.ShowLevels 1
    Range("b2").Select
¿Le sirve? ¿O siempre no le da los resultados deseados?
 
Upvote 0

Forum statistics

Threads
1,223,956
Messages
6,175,613
Members
452,661
Latest member
Nonhle

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