이 강좌의 전체 VBA 코드는 무엇인가요?

18.09.16 22:26 작성 조회수 133

0

앞의 슬라이드랑 연결이 되는 건가요?

Sub 반복문_1()

Dim point As Integer

Dim grade As String

Dim checker_of_point As String

checker_of_point = Sheet1.Range("A1").Value

If checker_of_point <> "" Then

If IsNumeric(checker_of_point) Then

If checker_of_point <= 100 And checker_of_point >= 0 Then

point = checker_of_point

End If

End If

End If

MsgBox point & " 점!"

end sub

아니면 이렇게 끝나는 건가요?

답변 0

답변을 작성해보세요.

답변을 기다리고 있는 질문이에요.
첫번째 답변을 남겨보세요!