gpt4 book ai didi

excel - 如何过滤列中的非彩色单元格

转载 作者:行者123 更新时间:2023-12-04 21:12:52 26 4
gpt4 key购买 nike

我有一列,其中一些单元格有颜色背景,而有些则没有,是否可以在 non 上进行过滤?彩色细胞。

我已经尝试了下面的代码,但它不起作用,也无法通过搜索网络找到任何东西。

我也试过设置RGB(255, 255, 255)希望过滤white背景

 With ws
.AutoFilterMode = False
.Range("A1", Cells(lRow, lCol)).Cells.AutoFilter
.Range("A1", Cells(lRow, lCol)).Cells.AutoFilter Field:=4, Criteria1:="<>RGB(255, 199, 206)", Operator:=xlFilterCellColor

On Error Resume Next
.UsedRange.Offset(1, 0).SpecialCells(xlCellTypeVisible).EntireRow.Delete
On Error GoTo 0

.AutoFilterMode = False
End With

最佳答案

这是 selecting 的运算符默认背景颜色 Operator:=xlFilterNoFill
您可以删除或不删除 Criteria1:=RGB(Red, Blue, Green)

With ws
.AutoFilterMode = False
.Range("A1", Cells(lRow, lCol)).Cells.AutoFilter
.Range("A1", Cells(lRow, lCol)).Cells.AutoFilter Field:=4, Criteria1:=RGB(255, 199, 206), Operator:=xlFilterNoFill 'to filter on default background color

On Error Resume Next
.UsedRange.Offset(1, 0).SpecialCells(xlCellTypeVisible).EntireRow.Delete
On Error GoTo 0

.AutoFilterMode = False
End With

关于excel - 如何过滤列中的非彩色单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24089983/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com