¿Como hacer que una hoja oculta se muestre...?

pepesoto

Board Regular
Joined
Sep 18, 2002
Messages
53
:rolleyes: Hola Amig@s. Necesito "ver" una hoja que esta oculta en un libro excel. Intente formato->hoja, pero la opcion esta deshabilitada (no se ven más hojas), pero sé que ahi está esa hoja porque una formula hace referencia a ella. Entro a VB e intento cambiarle la propiedad a "visible" a esa hoja, pero me manda un error: "Imposible asignar la propiedad visible de la clase worksheet"... El libro se ve desprotegido, pero nomás no puedo quitarle esa propiedad....

¿Alguna idea...?

Gracias anticipadas.
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
esta muy grande el archivo ? puedes mandarmelo para verlo ? quizas te pueda ayudar ( sin compromiso ) ya que puede estar protegido por codigos VBA,, o macros.....
saludos :LOL:
 
Upvote 0
:eek: Caray.... acabo de darme cuenta de que el libro SI está protegido, x eso no puedo cambiarle esa propiedad. ¡Lastima! Gracias de todas formas.
 
Upvote 0
Pepe,

Como hemos dicho aquí muchas veces, Excel no es una plataforma muy seguro. Si usted no puede hacer la hoja visible, sí se puede copiar el contenido. Por ejemplo:

<font face=Courier New><SPAN style="color:#00007F">Sub</SPAN> CopiarEscondida()

    <SPAN style="color:#00007F">Dim</SPAN> wbNuevo <SPAN style="color:#00007F">As</SPAN> Workbook
    <SPAN style="color:#00007F">Dim</SPAN> wsMuyEscondida <SPAN style="color:#00007F">As</SPAN> Worksheet
    <SPAN style="color:#00007F">Dim</SPAN> rngCelda <SPAN style="color:#00007F">As</SPAN> Range
    <SPAN style="color:#00007F">Set</SPAN> wbNuevo = Workbooks.Add
    <SPAN style="color:#00007F">Set</SPAN> wsMuyEscondida = Sheet3
    <SPAN style="color:#00007F">For</SPAN> <SPAN style="color:#00007F">Each</SPAN> rngCelda <SPAN style="color:#00007F">In</SPAN> wsMuyEscondida.UsedRange
        rngCelda.Copy wbNuevo.Sheets(1).Range(rngCelda.Address)
    <SPAN style="color:#00007F">Next</SPAN> rngCelda
<SPAN style="color:#00007F">End</SPAN> <SPAN style="color:#00007F">Sub</SPAN>
</FONT>

Saludos,
 
Upvote 0

Forum statistics

Threads
1,214,644
Messages
6,120,709
Members
448,983
Latest member
Joaquim_Baptista

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