I know that an Excel workbook can be password protected. Is there a way to configure an Excel workbook to self-destruct or lock-out further attempts after a password has been entered incorrectly 3x?
Is there a way for an Excel workbook to self-destruct after user has entered wrong password 3x?
856 Views Asked by BradyB At
1
There are 1 best solutions below
Related Questions in EXCEL
- Power Query / M Code, extract a list of tables into one main table, some column headers same but some different and in different order (and in row 2)
- Is there a way to validate the cell format (from excel) to fetch the symbol from it (in Java)?
- Excel - Visual Basic, macro with autofill "1"
- Getting Run-time error '13': Type Mismatch using .Find
- Getting website metadata (Excel VBA/Python)
- Excel Code Editor doesn't work (blank window)
- How to find out how many of each 2, 3 and 4 required to fit in 100 using excel?
- How would I apply a rather complex summation formula like this in Excel?
- Removing a Button from Customized Excel Ribbon
- Excel - Update Item Description Based on Accessories Ordered with It
- select duplicates from data based on another column
- How to use VBA to bold just some text
- VBA Code to filter and get values from csv to excel worksheet
- Look up max alpha numeric value
- Azure Batch for Excel VBA
Related Questions in PASSWORD-PROTECTION
- Password protected or private URL one-time viewable video access
- Export password protected PDF from QGIS
- How to pass through a VBA Project Password and remove the VBA Project Password via vb code
- How to password-protect an XLSX file in Python
- Changing users's passwords on Hashicorp Vault
- python check if compressed file is password-protected with just a small part of a file
- Write URL into ntag215 with password protection
- Securely safe credentials in a web-backend
- ThisWorkbook.Protect in Workbook_open() not working 100% of the time
- Edit password protected macro in Workbook 1 with another macro in Workbook 2
- VBA - Password prompts again when file is read only
- When I tap and immediately type, the UITextField freezes, but if I tap it then wait, type works
- NGINX password protection not working on Ubuntu 22
- Have I Hashed and Salted Correctly?
- Github claims somehow my password has been compromised and leaked. But there are no other evidences of it
Related Questions in SELF-DESTRUCTION
- Releasing memory of std::function inside the function body
- Best practises for remotely self-destructing docker containers & volumes?
- How can I create an app which deletes itself?
- How to update a value in destructing and loop
- Self-deleting PowerShell script deletes all contents but not the containing/parent folder
- Is it possible to self destruct the directory of a batch and all its contents?
- When should a service worker self destruct?
- Can I send disappearing SMS on android device?
- Why does the destructor call itself endlessly (causing a stack overflow)?
- Self-destroying Python script
- Is there a way to setup an self destructing value on Firebase real time database or firestore?
- Error: Returned values aren't valid, did it run Out of Gas? on selfdestruct()
- Is there a way for an Excel workbook to self-destruct after user has entered wrong password 3x?
- Self Delete Folder with scripts powershell
- c++ returning into method of deleted object
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
First you have to set a reference in the excel reference library by going to:
tools -> references -> "Microsoft Visual Basic For Applications Extensibility 5.3"
(while in vba menu)
Next you would modify your code to look something like this:
I'm not familiar with the proper syntax for setting a password, and I just used this as a reference.
If you need a reference for the self deleting part, you can look here.