인프런 커뮤니티 질문&답변
이 강좌의 전체 VBA 코드는 무엇인가요?
작성
·
209
0
앞의 슬라이드랑 연결이 되는 건가요?
Sub 반복문_1()
Dim point As IntegerDim 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
아니면 이렇게 끝나는 건가요?
답변
답변을 기다리고 있는 질문이에요
첫번째 답변을 남겨보세요!





