ExcelHome技术论坛

 找回密码
 免费注册

QQ登录

只需一步,快速开始

快捷登录

搜索
EH技术汇-专业的职场技能充电站 妙哉!函数段子手趣味讲函数 Excel服务器-会Excel,做管理系统 效率神器,一键搞定繁琐工作
HR薪酬管理数字化实战 Excel 2021函数公式学习大典 Excel数据透视表实战秘技 打造核心竞争力的职场宝典
让更多数据处理,一键完成 数据工作者的案头书 免费直播课集锦 ExcelHome出品 - VBA代码宝免费下载
用ChatGPT与VBA一键搞定Excel WPS表格从入门到精通 Excel VBA经典代码实践指南
查看: 476|回复: 4

[求助] 求助单元格自动填色的设置

[复制链接]

TA的精华主题

TA的得分主题

发表于 2023-7-8 06:56 | 显示全部楼层 |阅读模式
[广告] VBA代码宝 - VBA编程加强工具 · VBA代码随查随用  · 内置多项VBA编程加强工具       ★ 免费下载 ★      ★使用手册
本帖最后由 justinzhu266266 于 2023-7-8 06:58 编辑

请教各位高手。如何在工作表Loop中对列J到N设置以下格式:

如果F是smoke或strobe,并且J和K都不为pass时,列K设为绿色。
如果F是smoke或strobe,并且L和M都不为pass时,列M设为绿色。

如果F是therm时,并且J不为pass时,列K为绿色。
如果F是therm时,并且J和K都不为pass时,列L为绿色。
如果F是therm时,并且J,K和L都不为pass时,列M为绿色。
如果F是therm时,并且J,K,L和M都不为pass时,列N为绿色。

如果F是mcp时,从列J到N,如果不为pass时则为绿色。

此设置的目的是根据F列设备的种类和每一年检查的结果,调整下一年的颜色,提醒操作者应该在该年度进行检查。我尝试了条件格式和VBA都不成功。谢谢帮助。

8686 - Royal Woman's Hospital.xlsm.zip

330.48 KB, 下载次数: 4

TA的精华主题

TA的得分主题

发表于 2023-7-8 09:24 | 显示全部楼层
[广告] Excel易用宝 - 提升Excel的操作效率 · Excel / WPS表格插件       ★免费下载 ★       ★ 使用帮助
是这里带有空格造成的不匹配吧。。

image.jpg

TA的精华主题

TA的得分主题

发表于 2023-7-8 09:25 来自手机 | 显示全部楼层


Sub ApplyConditionalFormatting()
    Dim ws As Worksheet
    Dim lastRow As Long
    Dim i As Long
   
    ' 设置工作表
    Set ws = ThisWorkbook.Worksheets("Sheet1") ' 替换为您的工作表名称
   
    ' 获取最后一行
    lastRow = ws.Cells(ws.Rows.Count, "F").End(xlUp).Row
   
    ' 循环遍历行
    For i = 2 To lastRow ' 假设第一行是标题行,从第二行开始
        ' 检查条件并应用格式
        
        If (ws.Range("F" & i).Value = "smoke" Or ws.Range("F" & i).Value = "strobe") And ws.Range("J" & i).Value <> "pass" And ws.Range("K" & i).Value <> "pass" Then
            ws.Range("K" & i).Interior.Color = RGB(0, 255, 0) ' 将列K设为绿色
        End If
        
        If (ws.Range("F" & i).Value = "smoke" Or ws.Range("F" & i).Value = "strobe") And ws.Range("L" & i).Value <> "pass" And ws.Range("M" & i).Value <> "pass" Then
            ws.Range("M" & i).Interior.Color = RGB(0, 255, 0) ' 将列M设为绿色
        End If
        
        If ws.Range("F" & i).Value = "therm" And ws.Range("J" & i).Value <> "pass" Then
            ws.Range("K" & i).Interior.Color = RGB(0, 255, 0) ' 将列K设为绿色
        End If
        
        If ws.Range("F" & i).Value = "therm" And ws.Range("J" & i).Value <> "pass" And ws.Range("K" & i).Value <> "pass" Then
            ws.Range("L" & i).Interior.Color = RGB(0, 255, 0) ' 将列L设为绿色
        End If
        
        If ws.Range("F" & i).Value = "therm" And ws.Range("J" & i).Value <> "pass" And ws.Range("K" & i).Value <> "pass" And ws.Range("L" & i).Value <> "pass" Then
            ws.Range("M" & i).Interior.Color = RGB(0, 255, 0) ' 将列M设为绿色
        End If
        
        If ws.Range("F" & i).Value = "therm" And ws.Range("J" & i).Value <> "pass" And ws.Range("K" & i).Value <> "pass" And ws.Range("L" & i).Value <> "pass" And ws.Range("M" & i).Value <> "pass" Then
            ws.Range("N" & i).Interior.Color = RGB(0, 255, 0) ' 将列N设为绿色
        End If
        
        If ws.Range("F" & i).Value = "mcp" And (ws.Range("J" & i).Value <> "pass" Or ws.Range("K" & i).Value <> "pass" Or ws.Range("L" & i).Value <> "pass" Or ws.Range("M" & i).Value <> "pass" Or ws.Range("N" & i).Value <> "pass") Then
            ws.Range("J" & i & ":N" & i).Interior.Color = RGB(0, 255, 0) ' 将列J到N设为绿色
        End If
    Next i
   
    ' 清除选择
    ws.Cells(1, 1).Select
End Sub

TA的精华主题

TA的得分主题

发表于 2023-7-8 09:25 | 显示全部楼层

TA的精华主题

TA的得分主题

 楼主| 发表于 2023-7-9 19:46 | 显示全部楼层
tchh666 发表于 2023-7-8 09:25
清除 空格 就可以了

谢谢你的回复,去掉空格后确实就好了。
您需要登录后才可以回帖 登录 | 免费注册

本版积分规则

手机版|关于我们|联系我们|ExcelHome

GMT+8, 2024-11-17 07:26 , Processed in 0.028916 second(s), 11 queries , Gzip On, MemCache On.

Powered by Discuz! X3.4

© 1999-2023 Wooffice Inc.

沪公网安备 31011702000001号 沪ICP备11019229号-2

本论坛言论纯属发表者个人意见,任何违反国家相关法律的言论,本站将协助国家相关部门追究发言者责任!     本站特聘法律顾问:李志群律师

快速回复 返回顶部 返回列表