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

条件格式难题!!!

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

关于(1) 在一列中把包含”AAAA””BBBB””CCCC””DDDD”的单元格用黄颜色标记出来..(我写的公式(=OR(A1=”AAAA”,A1=….)行不通
(2)清除条件格式但不清除单元格颜色(不知能否实现)
这个问题困扰我一天一夜了,请老师帮我解决..本人不甚感激!!的问题

要满足你的要求,只能用VBA代码(多条件格式经常会出现莫名其妙错误):如下
Q = [A90000].End(xlUp).Row
With Sheets(“SHEET1”).Range(“B1:B” & Q)
Set c = .Find(what:=”SNAI”, LookIn:=xlValues)
If Not c Is Nothing Then
Do
c.Offset(0, 0).Range(“A1”).Select
Selection.Font.ColorIndex = 5
Set c = .FindNext(c)
Loop While Not c.Font.ColorIndex = 5
End If
ENd with
多条件照填.一次完成,不会影响EXCEL速度

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

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

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

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2611.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