출처: http://www.mrexcel.com/forum/excel-questions/117239-visual-basic-applications-if-statement.html
VBA If 문장에서 OR 연산을 쓰기 위해 구글링 해보니 Or 네요.
sub test()
If Range("A1") = 1 Or Range("A1") = 2 Then MsgBox "A1 equals either 1 or 2"
end sub
If Range("A1") = 1 Or Range("A1") = 2 Then MsgBox "A1 equals either 1 or 2"
end sub
'Office > VBA' 카테고리의 다른 글
VBA에서 상수에 따라 크기가 변하는 배열 선언 불가 (0) | 2016.06.06 |
---|---|
VBA 투명 그림 사용하기 (0) | 2014.10.03 |
VBA에서 Enumeration 타입 사용하기 (0) | 2014.09.28 |
VBA Select Case 문에서 OR 넣기 (0) | 2014.09.27 |
VBA에서 긴 줄을 다음줄로 넘기는 방법 (0) | 2014.09.24 |