Re: $$Excel-Macros$$ Password Protection

2017-02-20 Thread Paul Schreiner
That is not an "Excel macros" question.What you're looking for is a method to password "encrypt" adobe pdf files (try googling that) If, in Excel, you have a list of files and the Employee code for each file, you may be able to write a macro using SendKeys. However, Googling "automate password pr

Re: $$Excel-Macros$$ password protect and hide worksheet in excel.

2014-08-01 Thread Abhilash Barapatre
thanks a lot.. On Fri, Aug 1, 2014 at 1:23 PM, Vaibhav Joshi wrote: > Check this.. > > http://www.vbaexpress.com/kb/getarticle.php?kb_id=380 > > Cheers!! > > > On Thu, Jul 31, 2014 at 11:36 PM, ab12tatre wrote: > >> Hello All, >> >> I want to hide a worksheet with Password protection in such a

Re: $$Excel-Macros$$ password protect and hide worksheet in excel.

2014-08-01 Thread Vaibhav Joshi
Check this.. http://www.vbaexpress.com/kb/getarticle.php?kb_id=380 Cheers!! On Thu, Jul 31, 2014 at 11:36 PM, ab12tatre wrote: > Hello All, > > I want to hide a worksheet with Password protection in such a way that, > unless we enter the password no one will come to know that there is an > hi

Re: $$Excel-Macros$$ Password protected work sheet

2014-05-20 Thread xlstime
Thank Paul :) . Enjoy Team XLS On Mon, May 19, 2014 at 4:40 PM, Paul Schreiner wrote: > Yes, there are ways to override (break) passwords. > But, per Forum Rules #3, you shouldn't seek them here. > --- > 3) Don't post questions regarding breaking or

Re: $$Excel-Macros$$ Password protected work sheet

2014-05-19 Thread Paul Schreiner
Yes, there are ways to override (break) passwords. But, per Forum Rules #3, you shouldn't seek them here. --- 3) Don't post questions regarding breaking or bypassing any security measure. ---   xx Th

Re: $$Excel-Macros$$ Password protected work sheet

2014-05-17 Thread xlstime
try below add in http://www.straxx.com/excel/password.xla . Enjoy Team XLS On Sat, May 17, 2014 at 7:04 PM, Robert Lynch wrote: > We have a form we use at work to report client income/expenses which we > would like to modify, We have been able to make some modificatio

Re: $$Excel-Macros$$ Password Assistance

2013-12-17 Thread Dhartikumar Sahu
share the excel file On Wed, Dec 18, 2013 at 11:20 AM, Jocky Beta wrote: > Hi, > > Can you share the Excel sheet? > > Regards > > > On Wed, Dec 18, 2013 at 3:06 AM, Adam Subelka wrote: > >> I have a Excel 2010 file that is VBA Password protected. The person who >> protected the file is no long

Re: $$Excel-Macros$$ Password Assistance

2013-12-17 Thread Jocky Beta
Hi, Can you share the Excel sheet? Regards On Wed, Dec 18, 2013 at 3:06 AM, Adam Subelka wrote: > I have a Excel 2010 file that is VBA Password protected. The person who > protected the file is no longer with the company and I cannot find anyone > who can unlock the file. > > I have a macro t

Re: $$Excel-Macros$$ Password problem in Excel Macro

2012-12-07 Thread Paul Schreiner
--- “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: Mccue

Re: $$Excel-Macros$$ Password problem in Excel Macro

2012-12-06 Thread Mccue
On Thursday, December 6, 2012 9:17:50 AM UTC-6, Paul Schreiner wrote: > > Do you have the password? > > Is it asking for the password when you open the file? or when you try to > select the range? > > (need to figure out if you are dealing with a protected file or sheet) > > if your pass

Re: $$Excel-Macros$$ Password problem in Excel Macro

2012-12-06 Thread Paul Schreiner
Do you have the password? Is it asking for the password when you open the file? or when you try to select the range? (need to figure out if you are dealing with a protected file or sheet) if your password is "easypwd" then: If the workbook is password protected, you can use: activeworkbook.un

Re: $$Excel-Macros$$ Password protect hidden sheets

2012-01-31 Thread PrIyAnKa
t;> >> MsgBox "Incorrect Password,Woksheet can not be visible", >> vbCritical, "Password Required" >> >> End If >> >> End With >> >> >> >> End Sub >> >

Re: $$Excel-Macros$$ Password protect hidden sheets

2012-01-31 Thread The Viper
*From:* excel-macros@googlegroups.com [mailto: > excel-macros@googlegroups.com] *On Behalf Of *NOORAIN ANSARI > *Sent:* Jan/Tue/2012 01:49 > *To:* excel-macros@googlegroups.com > *Subject:* Re: $$Excel-Macros$$ Password protect hidden sheets > > ** ** > > Hi priyanka

RE: $$Excel-Macros$$ Password protect hidden sheets

2012-01-31 Thread Rajan_Verma
With End Sub From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of NOORAIN ANSARI Sent: Jan/Tue/2012 01:49 To: excel-macros@googlegroups.com Subject: Re: $$Excel-Macros$$ Password protect hidden sheets Hi priyanka, Try through below vba Code... P

Re: $$Excel-Macros$$ Password protect hidden sheets

2012-01-31 Thread NOORAIN ANSARI
Hi priyanka, Try through below vba Code... Private Sub Worksheet_Activate() Sheet1.Protect "1823" Sheets(1).Visible = xlSheetVeryHidden Dim pass As String pass = InputBox("kindly enter password to unprotect sheet") If pass = "1823" Then Sheet1.Unprotect "1823" Sheets(1).Visible = True Else MsgBox

Re: $$Excel-Macros$$ Password protect hidden sheets

2012-01-30 Thread Yahya Muhammad
Hi Priyanka Yes. But there is a work around for it using VBA . But without using any codes. It goes like this: 1. Right click on the sheet tab to be made hidden, View Code. See the properties menu on the left bottom window. Choose the visible mode as "2- XLSheetVeryHidden" 2. Then

Re: $$Excel-Macros$$ Password protect hidden sheets

2012-01-30 Thread Shaik Waheed
First assign a password to the sheet before hiding it, so that when other user unhide's it, the sheet will be in read only mode and if the user want to do changes it will prompt for password. You can do this by using keyboard shortcut: ALT+T,P,P and set the password. Hope it will help u. On Tue,

Re: $$Excel-Macros$$ Password protect hidden sheets

2012-01-30 Thread PrIyAnKa
I want that other person can open the whole sheet but he can't open the hidden sheets w/o password Can it be done? protecting a whole workbook is not useful for me , Rajan On Tue, Jan 31, 2012 at 12:31 PM, NOORAIN ANSARI wrote: > Hi Priyanka, > > I think you can't unhide sheet without password.

Re: $$Excel-Macros$$ Password protect hidden sheets

2012-01-30 Thread NOORAIN ANSARI
Hi Priyanka, I think you can't unhide sheet without password.. refer to below link.. http://www.howtogeek.com/howto/14160/hide-and-unhide-worksheets-and-workbooks-in-excel-2007-2010/ On Tue, Jan 31, 2012 at 12:05 PM, PrIyAnKa wrote: > Dear Team > > Kindly let me know if i have a workbook ha

RE: $$Excel-Macros$$ Password protect hidden sheets

2012-01-30 Thread Rajan_Verma
You can Protect Workbook. After hiding Worksheets.. Rajan From: excel-macros@googlegroups.com [mailto:excel-macros@googlegroups.com] On Behalf Of PrIyAnKa Sent: Jan/Tue/2012 12:05 To: excel-macros@googlegroups.com Subject: $$Excel-Macros$$ Password protect hidden sheets Dear Team Ki

Re: $$Excel-Macros$$ Password protect & unprotect sheets using code

2011-04-16 Thread Rajesh K R
Hi, Thanks for ur reply Regards Rajesh Kainikkara On 4/15/11, STDEV(i) wrote: > Sub ABCD() > Sheets("MySheet").Unprotect "yourpassword" > --- your program accessing to sheets("MySheet") > Sheets("MySheet").Protect "yourpassword" > End sub > > > On Fri, Apr 15, 2011 at 6:51 PM, Rajesh K R > wr

Re: $$Excel-Macros$$ Password protect & unprotect sheets using code

2011-04-15 Thread Jai
Please send excel file. On Fri, Apr 15, 2011 at 5:21 PM, Rajesh K R wrote: > Hi Experts, > > I want to password protect my work sheets, but the same time it is > necessary to unprotect it for the running of macro so i have to give a > code to unprotect them. how can I do it. > > Regards > > Rajes

Re: $$Excel-Macros$$ Password protect & unprotect sheets using code

2011-04-15 Thread STDEV(i)
Sub ABCD() Sheets("MySheet").Unprotect "yourpassword" --- your program accessing to sheets("MySheet") Sheets("MySheet").Protect "yourpassword" End sub On Fri, Apr 15, 2011 at 6:51 PM, Rajesh K R wrote: > Hi Experts, > I want to password protect my work sheets, but the same time it is > necessar

Re: $$Excel-Macros$$ Password Help Required

2010-10-11 Thread krishna mummina
Hi, what about a hidden sheet? On Mon, Oct 11, 2010 at 11:23 PM, hemant shah wrote: > Hi All, > > Can you please help me with my query regarding the password change in VBA. > > Thanks in advance. > > Waiting for the resolution on my query. > > Regards, > Hemant Shah > > -- > >

Re: $$Excel-Macros$$ password

2010-09-23 Thread N.Shivkumar
Send the file i will do it for you N.SHIVKUMAR Mobile : +919422613567 Office : +912332301775 Alternate Email: shiv1...@yahoo.com On 23 September 2010 04:40, Skanda wrote: > Hi All, > How to unlock a password that is set for an excel file? > > > -- > > --

Re: $$Excel-Macros$$ Password

2010-09-15 Thread Mahesh
Hi Shimmy Kindly go through the below mention link http://www.ehow.com/how_4700901_password-protect-excel.html On Wed, Sep 15, 2010 at 1:02 PM, Shimmy wrote: > morning guys! > I have been using Offic 2007 since 2008, and still until today I am > having the same proble I had 2 years ago! Could

Re: $$Excel-Macros$$ PASSWORD REMOVER

2010-08-23 Thread viju mobile
Just open excel file. then open this plug-in. go to tools, you will find options unprotect workbook unprotect sheet choose what you want.. you are done!! Vijay Joshi On Wed, Aug 18, 2010 at 10:35 PM, Kumar Punnam wrote: > Hi Viju > Please let me know how to use this addin. > > Thanks in advance

Re: $$Excel-Macros$$ PASSWORD REMOVER

2010-08-18 Thread Kumar Punnam
Hi Viju Please let me know how to use this addin. Thanks in advance With Regards P.V. Ravi Kumar -- -- Some important links for excel users: 1. Follow us on TWITTER for tips tricks and links : http://twitter.com/ex

Re: $$Excel-Macros$$ PASSWORD REMOVER

2010-08-18 Thread roberto mensa
https://sites.google.com/site/e90e50/vba/rimuoverepasswordexcel 2010/8/18 viju mobile > > > -- > > -- > Some important links for excel users: > 1. Follow us on TWITTER for tips tricks and links : > http://twitter.c

Re: $$Excel-Macros$$ Password crecker for Excel workbbok

2010-01-10 Thread Nandkumar kakvipure
Hello Bro, Please attach File On Sun, Jan 10, 2010 at 4:02 PM, maulik desai wrote: > Hi, > > Can any one provide me the password breaker or macros or any tool which > can break the password to open the Excel workbook i am takiing abt to open > password protected Excel workbook > (not to unprotec

Re: $$Excel-Macros$$ Password Cracker file

2010-01-08 Thread SUMIT VYAS
;> >> >> Please find attached the same >> >> >> >> Regards >> >> Sathish Jalendran >> >> [image: Picture (Device Independent Bitmap)] >> >> >> >> *From:* excel-macros@googlegroups.com [mailto: >> excel-mac...@

Re: $$Excel-Macros$$ Password Cracker file

2010-01-07 Thread grlinks-karthik
Attach the file On Tue, Jan 5, 2010 at 5:07 PM, Prathap . wrote: > Hi There.. > > > > I have excel file which is protected. > > > > Can anyone please help crack the password. If possible, then pls tell > me. Keeping the confidentiality in to consideration i can mail the excel > file to the concer

Re: $$Excel-Macros$$ Password Cracker file

2010-01-05 Thread Nandkumar kakvipure
Bro Attach File On Tue, Jan 5, 2010 at 5:07 PM, Prathap . wrote: > Hi There.. > > > > I have excel file which is protected. > > > > Can anyone please help crack the password. If possible, then pls tell > me. Keeping the confidentiality in to consideration i can mail the excel > file to the concer

Re: $$Excel-Macros$$ Password Cracker file

2010-01-05 Thread Dhartikumar Sahu
please send the file. On Tue, Jan 5, 2010 at 5:07 PM, Prathap . wrote: > Hi There.. > > > > I have excel file which is protected. > > > > Can anyone please help crack the password. If possible, then pls tell > me. Keeping the confidentiality in to consideration i can mail the excel > file to the

Re: $$Excel-Macros$$ Password Cracker file

2010-01-05 Thread manan joshi
better use google for this On Tue, Jan 5, 2010 at 5:07 PM, Prathap . wrote: > Hi There.. > > > > I have excel file which is protected. > > > > Can anyone please help crack the password. If possible, then pls tell > me. Keeping the confidentiality in to consideration i can mail the excel > file to

Re: $$Excel-Macros$$ Password Question

2009-12-07 Thread rf1234 rf1234
check out the security and user authentication. at http://groups.google.com/group/excel_vba/members_invite? On Tue, Dec 8, 2009 at 2:14 AM, LyndsRose wrote: > Hey everyone! I have a question about passwords in Excel. I password > protected a document, or sheet, and sent the sheet via email to

Re: $$Excel-Macros$$ Password removal Tool !

2009-11-26 Thread Rehan Baig
No file is attached please attach the file and mail it again, Plz ! (REHAN BAIG) On Tue, Jul 28, 2009 at 3:29 PM, shafiq online wrote: > > Attached is password removal tool. You can you it by add-in. These is for > removing password from Sheet. > > Regads, > > > > --