Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
セル O12 または R12 に「投資収益」というテキストがあり、テキストが列 O または列 R にあるかどうかを判断するための vba コードは何ですか?
どんな助けでも大歓迎です。
これは非常に基本的な方法です。値が両方のセルにあるかどうかはチェックされません。
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