search
HomeSoftware TutorialOffice Software3 ways to set and cancel Excel 'Open Password'

How to protect your Excel files: Three ways to set an opening password In daily work, Excel files often contain sensitive data, and it is very important to prevent information leakage. Setting an opening password is one of the effective ways to protect Excel files. This article will introduce three methods of setting a password to open Excel, including using the password protection function, protecting worksheets, and protecting structures. In addition, you will also be guided on how to cancel these passwords, allowing you to flexibly control the access rights to Excel files. PHP editor Strawberry will introduce these methods in detail in the article to help you protect your data security.

Let’s first take a look at 3 ways to set a password for opening Excel.

Method 1: Set the opening password through Excel’s built-in function

1. Open the Excel sheet, click the "File" tab in the upper left corner, enter the file menu, and click "Information" → "Protect Workbook" → "Encrypt with Password".

3 ways to set and cancel Excel Open Password

2. When the "Encrypt Document" dialog box pops up, enter the password you want to set in the password field, and then click "OK". The system will ask you to enter the password again for confirmation.

After completing the above operations and saving the file, the password will be set when Excel is opened. The next time you open this file, you will need to enter the password to view the contents.

3 ways to set and cancel Excel Open Password

Method 2: Set the opening password through the "Save As" function

1. Open the Excel file that needs to be protected, click the "File" tab in the upper left corner, and then select "Save As"; after the "Save As" dialog box pops up, click the "Tools" button in the lower right corner, and then select "General Options" ".

3 ways to set and cancel Excel Open Password

2. When the dialog box pops up, enter the password you want to set in the "Open Permission Password" column, and then click "OK" to save the file. The password will be set when Excel opens.

3 ways to set and cancel Excel Open Password

Method 3: Use VBA macro code to set the opening password

1. After opening Excel, press the shortcut key "Alt + F11" to open the VBA editor. In the VBA editor, click the "Insert" menu and select "Module".

3 ways to set and cancel Excel Open Password

2. In the new module, enter the following code:

Sub SetPassword() Dim pw As String pw = InputBox("Please enter the password to be set") If pw "" Then ThisWorkbook.Password = pw ThisWorkbook.Save MsgBox "The password has been set successfully!" Else MsgBox "No password has been set ” End IfEnd Sub

3. Close the VBA editor, return to Excel, press "Alt + F8" to open the macro dialog box, select "SetPassword", and then click "Run". After the dialog box pops up, enter the password as prompted, and the password for opening Excel is set.

3 ways to set and cancel Excel Open Password

Let’s take a look at how to cancel the Excel opening password.

If you don’t want to have to do the "enter password" step every time you open Excel, so you want to cancel the password, you can cancel it according to the following method. No matter which method you originally used to set it, you can use this method.

After opening Excel with a password, follow the steps set by "Method 1" and click "File" → "Information" → "Protect Workbook" → "Encrypt with Password". After the password bar pops up, delete the existing password and leave Empty, and then click "OK", Excel will open the password and cancel it.

3 ways to set and cancel Excel Open Password

If you forget the password to open Excel and want to cancel the password, you will not be able to operate in Excel. In this case, we need the help of other tools.

For example, PepsiNiu Excel Password Recovery Tool, although it cannot cancel the forgotten password, it can help us retrieve the Excel password.

Select the [Retrieve Password] module in the tool, and then follow the prompts.

3 ways to set and cancel Excel Open Password

The above is the detailed content of 3 ways to set and cancel Excel 'Open Password'. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Your Calculator App Can Be Replaced By Microsoft ExcelYour Calculator App Can Be Replaced By Microsoft ExcelMar 06, 2025 am 06:01 AM

Ditch the Calculator: Why and How to Use Excel for All Your Calculations I haven't touched a calculator in ages. Why? Because Microsoft Excel handles all my calculations with ease, and it can do the same for you. Why Excel Trumps a Calculator While

Don't Create Tables in Word: Use Excel InsteadDon't Create Tables in Word: Use Excel InsteadMar 06, 2025 am 03:04 AM

Creating tables in Word, although improved, is still cumbersome and sometimes brings more problems. This is why you should always create tables in Microsoft Excel. Why is it better to create tables in Excel? In short, Word is a word processor, while Excel is a data processor. So Word is not built for the best table creation, but its similar product, Excel. Here are just some of the reasons why creating tables in Excel is better than using Microsoft Word: Although it is surprising that you can use many Excel-like features in Microsoft Word tables, in Excel you

How to Reduce the Gaps Between Bars and Columns in Excel Charts (And Why You Should)How to Reduce the Gaps Between Bars and Columns in Excel Charts (And Why You Should)Mar 08, 2025 am 03:01 AM

Enhance Your Excel Charts: Reducing Gaps Between Bars and Columns Presenting data visually in charts significantly improves spreadsheet readability. Excel excels at chart creation, but its extensive menus can obscure simple yet powerful features, suc

5 Things You Can Do in Excel for the Web Today That You Couldn't 12 Months Ago5 Things You Can Do in Excel for the Web Today That You Couldn't 12 Months AgoMar 22, 2025 am 03:03 AM

Excel web version features enhancements to improve efficiency! While Excel desktop version is more powerful, the web version has also been significantly improved over the past year. This article will focus on five key improvements: Easily insert rows and columns: In Excel web, just hover over the row or column header and click the " " sign that appears to insert a new row or column. There is no need to use the confusing right-click menu "insert" function anymore. This method is faster, and newly inserted rows or columns inherit the format of adjacent cells. Export as CSV files: Excel now supports exporting worksheets as CSV files for easy data transfer and compatibility with other software. Click "File" > "Export"

How to Use the AVERAGEIF and AVERAGEIFS Functions in ExcelHow to Use the AVERAGEIF and AVERAGEIFS Functions in ExcelMar 07, 2025 am 06:03 AM

Quick View of AVERAGEIF and AVERAGEIFS Functions in Excel Excel's AVERAGEIF and AVERAGEIFS functions can be used to calculate the average value of a dataset. However, unlike simpler AVERAGE functions, they are able to include or exclude specific values ​​in the calculation. How to use the AVERAGEIF function in Excel Excel's AVERAGEIF function allows you to calculate the average value of a filtered dataset based on a single condition set. AVERAGEIF function syntax The AVERAGEIF function contains three parameters: =AVERAGEIF(x,y,z)

Microsoft Excel Keyboard Shortcuts: Printable Cheat SheetMicrosoft Excel Keyboard Shortcuts: Printable Cheat SheetMar 14, 2025 am 12:06 AM

Master Microsoft Excel with these essential keyboard shortcuts! This cheat sheet provides quick access to the most frequently used commands, saving you valuable time and effort. It covers essential key combinations, Paste Special functions, workboo

How to Use LAMBDA in Excel to Create Your Own FunctionsHow to Use LAMBDA in Excel to Create Your Own FunctionsMar 21, 2025 am 03:08 AM

Excel's LAMBDA Functions: An easy guide to creating custom functions Before Excel introduced the LAMBDA function, creating a custom function requires VBA or macro. Now, with LAMBDA, you can easily implement it using the familiar Excel syntax. This guide will guide you step by step how to use the LAMBDA function. It is recommended that you read the parts of this guide in order, first understand the grammar and simple examples, and then learn practical applications. The LAMBDA function is available for Microsoft 365 (Windows and Mac), Excel 2024 (Windows and Mac), and Excel for the web. E

If You Don't Use Excel's Hidden Camera Tool, You're Missing a TrickIf You Don't Use Excel's Hidden Camera Tool, You're Missing a TrickMar 25, 2025 am 02:48 AM

Quick Links Why Use the Camera Tool?

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use