标题:Excel 单元格增加 条件格式 的代码怎么写
取消只看楼主
easyppt
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:119
专家分:169
注 册:2021-11-24
结帖率:100%
 问题点数:0 回复次数:1 
Excel 单元格增加 条件格式 的代码怎么写
VBA录制的代码如下,怎么转换为 VFP:
*    Range("N2").Select
*    Selection.FormatConditions.Add Type:=xlExpression, Formula1:="=$N$2<>0"
*    Selection.FormatConditions(Selection.FormatConditions.Count).SetFirstPriority
*    With Selection.FormatConditions(1).Interior
*        .PatternColorIndex = xlAutomatic
*        .Color = 10498160
*        .TintAndShade = 0
*    End With
*    Selection.FormatConditions(1).StopIfTrue = False
搜索更多相关主题的帖子: 格式 代码 Excel Selection 增加 
2022-09-02 11:49
easyppt
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:119
专家分:169
注 册:2021-11-24
得分:0 
自己摸索出来了:
with .Range("N2")
    .FormatConditions.Add(2, 5, "=$N$2<>0")
    .FormatConditions(1).Interior.ColorIndex = 6
endwith
2022-09-02 13:16



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-509934-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.122991 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved