|
楼主 |
发表于 2013-7-8 14:05
|
显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件 ★ 免费下载 ★ ★ 使用帮助★
liang.hongzhi 发表于 2013-7-8 11:32
咨询一下,哪个条件格式怎么做的?我看公式就是一个=TRUE 就ok了,选择到某行显示特殊格式的公式我一直用的 ...
在 [数据库]工 作中还设了如下自定义函数
Private Sub Worksheet_SelectionChange(ByVal Target As Excel.Range)
If Target.Row >= 5 Then '5,是自五行向下
On Error Resume Next
[ChangColor_With1].FormatConditions.Delete
Target.EntireRow.Name = "ChangColor_With1"
With [ChangColor_With1].FormatConditions
.Delete
.Add xlExpression, , "TRUE"
.Item(1).Interior.ColorIndex = 43 '43是颜色的编号, 可自已选择
.Item(1).Font.ColorIndex = 5
End With
End If
End Sub
|
|