What line is producing an error?

I ran it and it worked fine.

But my sheets weren't password protected.
At no point in your macro are you "applying" the password to unprotect your 
sheets or workbook.

Since I don't know what kind of Protection you've issued on your workbook and 
sheets,
it's difficult to test it.

Can you delete all of the data from your sheets and post or email a file
WITH ANY PROTECTION ENABLED.

And, from your example, I "assume" your password is "password"...
 
Paul
-----------------------------------------
“Do all the good you can,
By all the means you can,
In all the ways you can,
In all the places you can,
At all the times you can,
To all the people you can,
As long as ever you can.” - John Wesley
-----------------------------------------




________________________________
From: Hilary Lomotey <resp...@gmail.com>
To: excel-macros <EXCEL-MACROS@googlegroups.com>
Sent: Tue, October 30, 2012 2:44:49 PM
Subject: $$Excel-Macros$$ UNHIDING SELECTED WORKSHEET



Hello

Kindly assist me to modify this code, i am trying to hide some selected work 
sheet, however, i get a debug error when i use the code below, pls can anyone 
modify this code for me. thanks 



Sub Sheets_Unhide()

Dim sh As Worksheet
Dim myPassword As String
myPassword = "password"
If InputBox("Please enter password to show sheets: ") = myPassword Then
  Application.ScreenUpdating = False
  For Each sh In Sheets(Array("Sheet1", "Sheet2"))
    sh.Visible = True
  Next sh
  Application.ScreenUpdating = True
Else
  MsgBox ("Incorrect password, macro stopping")
End If
End Sub
-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel
 
FORUM RULES (1120+ members already BANNED for violation)
 
1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
 
2) Don't post a question in the thread of another member.
 
3) Don't post questions regarding breaking or bypassing any security measure.
 
4) Acknowledge the responses you receive, good or bad.
 
5) Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

 
6) Jobs posting is not allowed.
 
7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.
 
NOTE : Don't ever post personal or confidential data in a workbook. Forum 
owners 
and members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.

-- 
Join official facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES (1120+ members already BANNED for violation)

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.

2) Don't post a question in the thread of another member.

3) Don't post questions regarding breaking or bypassing any security measure.

4) Acknowledge the responses you receive, good or bad.

5)  Cross-promotion of, or links to, forums competitive to this forum in 
signatures are prohibited. 

6) Jobs posting is not allowed.

7) Sharing copyrighted ebooks/pirated ebooks/their links is not allowed.

NOTE  : Don't ever post personal or confidential data in a workbook. Forum 
owners and members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To post to this group, send email to excel-macros@googlegroups.com.
To unsubscribe from this group, send email to 
excel-macros+unsubscr...@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros?hl=en.


Reply via email to