keep asking for the password....

daveyc18

Well-known Member
Joined
Feb 11, 2013
Messages
737
Office Version
  1. 365
  2. 2010
Code:
    Sheets("IE").Select
    
 
    Cells.Copy
    
    ThisWorkbook.Sheets("ie").Activate
    
    
    Range("a1").PasteSpecial xlPasteValues


when it tries to paste the data, excel asks for the password (the source data file sheets are password protected). The thing is, if I dont enter a password and click ok or cancel, the data ends up getting pasted anyway

any way to bypass this alert?
 

Excel Facts

Why does 9 mean SUM in SUBTOTAL?
It is because Sum is the 9th alphabetically in Average, Count, CountA, Max, Min, Product, StDev.S, StDev.P, Sum, VAR.S, VAR.P.
Personally, I would provide the password via code, but perhaps:
Application.DisplayAlerts=False

Be sure and set it to True when you're done
 
Upvote 0
Personally, I would provide the password via code, but perhaps:
Application.DisplayAlerts=False

Be sure and set it to True when you're done

I have display alerts as false

the VBA code does successfully enter the password when the workbook is opened

but it seems to ask for the password when i try to paste the data to the destination workbook

now i don't know if it's asking for the workbook password or its the protected-sheet password as the dialog box is cut off ...my guess is protected sheet, but wouldn't that be asked when you're trying to type something on the protected sheet
 
Upvote 0

Forum statistics

Threads
1,221,310
Messages
6,159,176
Members
451,543
Latest member
cesymcox

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