How to undo all changes to get back the original data in Excel?
After modifying a worksheet, you may want to undo all changes to recover the original data of your worksheet. For Excel, it has the undo function to undo changes. But for undoing all changes you have done to the worksheet, it takes time to click the Undo button again and again. Actually, there are methods for you do quickly get back the original data after modifying the worksheet. Please browse this article for more details.
Undo all changes to get back the original data with Undo function
Undo all changes to get back the original data with backup
Undo all changes to get back the original data with Kutools for Excel
Undo all changes to get back the original data with Undo function
The original method for undoing changes in Excel is to use the Undo function. Please do as follows.
1. After modifying current worksheet, click the Undo button in the Quick Access Toolbar to undo the changes you have made to the worksheet.
Notes:

Undo all changes to get back the original data with backup
Another method for quickly getting back the original data after modifying worksheet is to back up this sheet before modifying. With the following VBA code, you can easily back up the worksheet.
1. Stay in the worksheet and keep the original data you want to back up, then press Alt + F11 to open the Microsoft Visual Basic Application window.
2. In the Microsoft Visual Basic Application window, click Insert > Module, and then copy and paste the below VBA code into the Module window.
VBA code: Back up worksheet
Sub CreateBackup()
Dim xWs As Worksheet
Dim xBackupWs As Worksheet
Dim xName As String
Set xWs = Application.ActiveSheet
xName = xWs.Name
xWs.Copy After:=Sheets(Application.Worksheets.Count)
Set xBackupWs = Application.ActiveSheet
xBackupWs.Name = "backup"
xWs.Activate
End Sub
3. Press the F5 key to run the code, then a worksheet named backup is created with exactly the same content with the specified worksheet.
Undo all changes to get back the original data with Kutools for Excel
Do you want to restore to the original data with just one click? With the Snap utility of Kutools for Excel, you can take a snapshot of current worksheet before modifying, and then get back the original data with one click.
Before applying Kutools for Excel, please download and install it firstly.
1. Before modifying the worksheet, Click Kutools > Snap > Track Snap. See screenshot:
2. In the Track Snap dialog box, click the OK button.
When you need to undo all changes and get back the original data of the worksheet, just click the snapshot you took to restore it.
Notes:
If you want to have a free trial (30-day) of this utility, please click to download it, and then go to apply the operation according above steps.
Best Office Productivity Tools
Supercharge Your Spreadsheets: Experience Efficiency Like Never Before with Kutools for Excel
Kutools for Excel boasts over 300 features, ensuring that what you need is just a click away...
Supports Office/Excel 2007-2021 & newer, including 365 | Available in 44 languages | Enjoy a full-featured 30-day free trial.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!







