欢迎访问服务器技术网-www.fuwuqijishu.com

excel显示问题

软件 fuwuqijishu 2年前 (2022-10-01) 11次浏览 0个评论 扫描二维码

关于 如何使所选单元格本身,及其所在行和列都用突出颜色显示?

在excel中,如何使所选单元格本身,及其所在行和列都用突出颜色显示?
例如:光标停留在单元格D4,那么,我希望D列、4行都突出显示,这样眼睛就不会花了以致看岔了。
请高手不吝赐教!

就象附件那个文件一样。
我想知道的是如何做到的!
的问题

打开VB编辑器,展开Microsoft Excel夹,双击Sheet1,写入
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
模块 l ActiveCell。Row, ActiveCell。
Column
End Sub
双击ThisWorkBOOK,写入
Private Sub Workbook_Open()
Sheet1。Cells。Interior。ColorIndex = xlNone
End Sub
点工具栏-模块,写入
Dim pr, pc As Integer
Public Sub col(r, c)
On Error Resume Next
ActiveSheet。
Cells(pr, pc)。EntireColumn。Interior。ColorIndex = xlNone
ActiveSheet。Cells(pr, pc)。EntireRow。Interior。ColorIndex = xlNone
ActiveSheet。
Cells(r, c)。EntireColumn。Interior。ColorIndex = 6
ActiveSheet。Cells(r, c)。EntireRow。Interior。ColorIndex = 6
pc = c
pr = r
End Sub
完成表1设置,上传刚完成表格,供大家参考。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2718.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900