• 1
  • 2
  • 3
  • 4

首页 / 教程

WPS表格显示交叉点 | wps表格中将交叉点用小圆点标注出来

2022-12-05 04:22:00

1.wps表格中 怎样将交叉点用小圆点标注出来

要使得选择单元格时行和列也同时变色,这个需要excel VBA来帮助解决,建立一个excel工作簿事件写入代码,无论在那个工作表中都可以达到这个效果,点击查看下图效果:

以下是代码,复制到VBA编辑窗口thisworkbook中即可。

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)

Sh.Cells.Interior.ColorIndex = -4142

Sh.Rows(Target.Row).Interior.ColorIndex = 12

Sh.Columns(Target.Column).Interior.ColorIndex = 12

Target.Interior.ColorIndex = 0

End Sub

WPS表格如何显示交叉点

小圆点标注表格点用交叉点

  • 1
  • 2
  • 3
  • 4

最新内容

手机

相关内容

  • 1
  • 2
  • 3

猜你喜欢