如何突出显示Excel中修改/更新的单元格?

网友投稿 226 2024-01-02

如何突出显示Excel中修改/更新的单元格?

有时,您可能希望在编辑工作表/工作簿以遵循更改时突出显示已修改的单元格,但是如何在Excel中处理呢?

使用“跟踪更改”突出显示已修改的单元格

用VBA代码突出显示修改后的单元格

使用表格合并突出显示表格中修改的单元格

使用“跟踪更改”突出显示已修改的单元格

在Excel中,“跟踪更改”功能可以突出显示更改。

1.保存工作簿,然后再应用 Track Changes 功能,然后单击 Review > Track Changes > Highlight Changes

.

2.在 Highlight Changes 对话框,同时选中 Track changes while editing. This also shares your workbookHighlight changes on screen

选项。 另外,您可以在跟踪更改时指定时间,用户和范围的限制。

3。 点击 OK。 现在 微软的Excel

对话框出现,并提示您保存工作簿。

4。 点击 OK。 现在,新的修改将以一个角度突出显示。

Tips::此功能适用于整个工作簿。

用VBA代码突出显示修改后的单元格

如何突出显示Excel中修改/更新的单元格?

如果需要VBA代码来处理作业,则可以执行以下操作:

1。 按 Alt + F11 启用 Microsoft Visual Basic for Applications 窗口。

2。 点击 Insert > Module,然后双击 ThisWorkbook in VBAProject 窗格,并将下面的代码粘贴到脚本中。

VBA:复制和粘贴单元格地址

UpdatebyExtendoffice20180307 Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range) If Target.Value <> "" Then Target.Interior.ColorIndex = 6 End If End Sub
Copy
3. Save the code and go back to the workbook, while you modified the sheet, the cells will be highlighted with a background color. Note: If you just want to apply the highlight in current sheet, just right click at the sheet tab and click View Code in the context menu, then paste below code to the script. Private Sub WorkSheet_Change(ByVal Target As Range) UpdatebyExtendoffice20180307 If Target.Value <> "" Then Target.Interior.ColorIndex = 6 End If End Sub Highlight the modified cells in tables with Tables Merge If you want to update a main table based on another one, and then highlight the modified/new data in the main table, you can try Kutools for Excel’s Tables Merge feature. Kutools for Excel, with more than 300 handy functions, makes your jobs more easier. Free Downloadfree full-featured in 30 days After installing Kutools for Excel, please do as below:(Free Download Kutools for Excel Now!) 1. Select the main table which needs to be modified or updated by other table, and click Kutools Plus > Tables Merge. 2. Select the table range you want to update the main table based on in Tables Merge wizard. 3. Click Next, and select the key column you want to compare two tables based on. 4. Click Next, select the columns you want to update. 5. Click Next, in the Highlight options section, select the background color and font color you want to use for the modified cells. 6. Click Finish and Yes close dialogs. Now the modified cells have been highlighted. Best Office Productivity Tools Transform Hours into Minutes with Kutools for Excel! Ready to supercharge your Excel tasks? Harness the power of Kutools for Excel - your ultimate time-saving tool. Streamline intricate tasks and glide through your data like a pro. Experience Excel at lightning speed! Why You Need Kutools for Excel 🛠️ Over 300 Powerful Features: Kutools is packed with more than 300 advanced features, simplifying your work in over 1500 scenarios. 📈 Superior Data Processing: Merge cells, remove duplicates, and perform advanced data conversions – all without breaking a sweat! ⏱️ Efficient Batch Operations: Why put in extra effort when you can work smart? Import, export, combine, and tweak data in bulk with ease. 📊 Customizable Charts and Reports: Access a broad variety of additional charts and generate insightful reports that tell a story. 🗄️ Powerful Navigation Pane: Gain an advantage with the robust Column Manager, Worksheet Manager, and Custom Favorites. 📝 Seven Types of Drop-down Lists: Make data entry a breeze with drop-down lists of various features and types. 🎓 User-Friendly: A breeze for beginners and a powerful tool for experts. Download Now and Soar Through Time with Excel! Read More... Free Download... Purchase... 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! Read More... Free Download... Purchase...

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:如何在Excel中突出显示最后一行/单元格?
下一篇:如何在 Excel 中突出显示奇数月或偶数月?
相关文章