发布网友 发布时间:2022-04-19 17:31
共2个回答
热心网友 时间:2022-07-10 11:17
打开所要查找的数据表格如下:
全部选定该表格,点击上方条件格式,子菜单中点击新建规则,
在跳出来的菜单中点击 仅对唯一值或重复值设置格式,第二个空格选择重复,下面选择格式,如图所示:
挑选好你希望的填充色,单击确定。
5
结果就会出来了啊。
热心网友 时间:2022-07-10 11:18
WPS表格有一个“阅读”功能,打开后点击单元格,会使该单元格所在行、列同时变色。
MS Excel没有这个功能,可通过VBA代码实现。
代码如下:
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
Application.ScreenUpdating = False
Cells.Interior.ColorIndex = 0
Rows(Target.Row).Interior.ColorIndex = 36
Columns(Target.Column).Interior.ColorIndex = 36
Application.ScreenUpdating = True
End Sub
输入代码后直接关闭VBA窗口就可以看到效果。
如果只想点击的单元格变色,行、列不变色,代码修改为:
Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
Application.ScreenUpdating = False
Cells.Interior.ColorIndex = 0
Target.Interior.ColorIndex = 36
Application.ScreenUpdating = ture
End Sub