책 내용 질문하기
엑셀에서의 프로시저 구현 2번 신청 눌렀을때의 코드작성
도서
2026 시나공 컴퓨터활용능력 1급 실기 기출문제집
페이지
,
조회수
7
작성일
2026-05-10
작성자
유*민
첨부파일
i = [A2].CurrentRegion.Rows.Count + 2
Cells(i, 1) = txt신청자명.Value
Cells(i, 2) = txt신청일.Value
j = cmb잡지명.ListIndex
Cells(i, 3) = cmb잡지명.List(j, 0)
Cells(i, 4) = txt구독부수.Value
If opt신규.Value = True Then
Cells(i, 5) = "신규"
Else
Cells(i, 5) = "재구독"
End If
Cells(i, 6) = Cells(i, 4) * (Cells(i, 9) * 0.9)
이렇게 작성했는데 혹시 어디가 틀린지 알 수 있을까요? 결제금액이 다르게 나오네요