更改突出显示颜色Excel 2007

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改突出显示颜色Excel 2007相关的知识,希望对你有一定的参考价值。

Use this code to change the default highlight color for a cell in excel 2007. Right click on the sheet name and click view code, Paste this code into the module that comes up.
  1. Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
  2. Static OldCell As Range
  3. If Not OldCell Is Nothing Then
  4. OldCell.Interior.ColorIndex = xlColorIndexNone
  5. End If
  6. Target.Interior.ColorIndex = 6 'yellow
  7. Set OldCell = Target
  8. End Sub

以上是关于更改突出显示颜色Excel 2007的主要内容,如果未能解决你的问题,请参考以下文章

通过双击突出显示 MS excel 2007 中的单元格

将突出显示的文本更改为不同的颜色

无法更改 UITableView 蓝色突出显示颜色

excel如何设置背景颜色

如何更改 IPython(Jupyter) 中代码的突出显示颜色样式?

使用 openxlsx 按单元格填充颜色过滤 Excel 中突出显示的数据