hara
if문 본문
Sub iff()
a = Range("b2").Value
b = Range("b3").Value
If a = "hara" Then
MsgBox ("yes")
Range("d3").Value = b & " " & a
Else
MsgBox ("no")
End If
End Sub
Comments
Sub iff()
a = Range("b2").Value
b = Range("b3").Value
If a = "hara" Then
MsgBox ("yes")
Range("d3").Value = b & " " & a
Else
MsgBox ("no")
End If
End Sub