gpt4 book ai didi

vba - 如何选择不包含某个单词的单元格

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

我有一个 Excel 表格,其中 C 列的一些单元格包含单词“Rinse”(其他单元格有各种其他内容)。

使用 VBA 代码,我将在 C 列中选择包含单词“Rinse”的所有行 - 此代码工作正常。

For i = 3 To 300
If Cells(i, 3).Value = "Rinse" Then
Rows(i).Select
Selection.FormatConditions.Delete
End If
Next

但是,我想做完全相反的事情,即 选择 C ​​列中所有不包含单词“Rinse”的行 .我尝试了以下方法,但它不起作用。
For i = 3 To 300
If Cells(i, 3).Value = Not "Rinse" Then
Rows(i).Select
Selection.FormatConditions.Delete
End If
Next

我该怎么做?

最佳答案

使用 Instr函数,像这样:

If Instr(Cells(i, 3).Value, "Rinse") = 0 Then

关于vba - 如何选择不包含某个单词的单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46544138/

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