如何查找包含特定文本的列? (VBA)

时间:2012-09-17 15:10:59

标签: vba

我在单元格O12或R12中有“投资收入”文本,我想知道vba代码是什么,以确定文本是在列O还是列R?

任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:0)

这是一个非常基本的方法。它不会检查值是否在两个单元格中:

If InStr(Range("O12").Value, "Investment Income") Then
    MsgBox "It's in O12"
ElseIf InStr(Range("R12").Value, "Investment Income") Then
    MsgBox "It's in R12"
Else
    MsgBox "It's not in either of them."
End If