码迷,mamicode.com
首页 > 其他好文 > 详细

excel十字交叉突亮显示

时间:2020-09-17 20:33:27      阅读:43      评论:0      收藏:0      [点我收藏+]

标签:change   mamicode   lex   技术   tco   obj   cond   rgb   模式   

打开excel按照alt+F11(或者打开"开发模式,选择Visual Basic"),选择ThisWorkbook写入如下代码

Private Sub Workbook_SheetSelectionChange(ByVal Sh As Object, ByVal Target As Range)
    Cells.FormatConditions.Delete
    With Target.EntireColumn
        .FormatConditions.Add xlExpression, , "=true"
        .FormatConditions(1).Interior.Color = RGB(253, 255, 200)
    End With
    With Target.EntireRow
        .FormatConditions.Add xlExpression, , "=true"
        .FormatConditions(2).Interior.Color = RGB(253, 255, 200)
    End With
End Sub

效果如下
技术图片

选择另外存为xlsm格式即可
技术图片

excel十字交叉突亮显示

标签:change   mamicode   lex   技术   tco   obj   cond   rgb   模式   

原文地址:https://blog.51cto.com/songhl/2530903

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!