• 새로운 소식이 있나요?
  • 이미지
    2019-02-04
    한글의 경우는 네모 숫자가 가능하지만, 엑셀에는 기본 기호에 위 네모숫자기호가 없습니다.다만, 한글 글꼴에 따라 네모 기호가 있는 글꼴이 있습니다.1) 중앙신문명조2) 한컴돋움3) 함초롬돋움
  • 이미지
    2019-02-04
    https://stackoverflow.com/questions/9414969/excel-vba-exit-for-loophttps://stackoverflow.com/questions/9414969/excel-vba-exit-for-loopIf [condition] Then Exit ForIf 조건문 Then Exit For
  • 이미지
    2019-02-04
    https://wikidocs.net/2074http://mwultong.blogspot.com/2007/01/excel-vba-time-stamp-24-12-hours.htmlhttps://mainia.tistory.com/787Format(Date, "yyyy-mm-dd")
  • 이미지
    2019-02-04
    https://thank-q.tistory.com/85https://thank-q.tistory.com/85Cells(i, "A") = Now '현재날짜와 시간을 출력합니다. Cells(i, "B") = DateAdd("yyyy", 1, Now) '현재시간을 기준으로 1년을 더한 날짜를 출력합니다. Cells(i, "C") = DateAdd("m", 1, Now) '현재시간을 기준으로 1개월을 더한 날짜를 더보기
  • 이미지
    2019-02-04
    vba 문자열 합치기https://mainia.tistory.com/3970https://mainia.tistory.com/3970
  • 이미지
    2019-02-04
    https://www.extendoffice.com/ko/documents/excel/4334-excel-hide-button-when-printing.htmlhttps://www.extendoffice.com/ko/documents/excel/4334-excel-hide-button-when-printing.html
  • 이미지
    2019-02-04
    https://md2biz.tistory.com/231https://md2biz.tistory.com/231
  • 이미지
    2019-02-04
    vba에서 딜레이 시간 주기 Application.Wait (Now + TimeValue("0:00:05"))http://www.officetutor.co.kr/board/Dtype/bfrmvw.asp?f_tn=Dqa_excel_n2&f_bno=112570&page=&fchk=&fval=http://www.officetutor.co.kr/board/Dtype/bfrmvw.asp?f_tn=Dqa_excel_n2&f_bno=112570&page=&fchk=&a 더보기
  • 이미지
    2019-02-04
    https://mainia.tistory.com/1295PrintPreview
  • 이미지
    2019-02-04
    2. 녹두장군 블로그https://mainia.tistory.com/category/%EC%97%91%EC%85%80%28Excel%29https://mainia.tistory.com/category/%EC%97%91%EC%85%80%28Excel%291. vba 기초https://macerayarislari.com/ko/vba/https://macerayarislari.com/ko/vba/https://aromio.tistory.com/entry/%EC%97%91%EC%85%80%ED%8B%B0%EC%BC%93-%EC%B6%9C% 더보기
  • 이미지
    2019-02-04
    https://mainia.tistory.com/3877https://mainia.tistory.com/3877'' Cells 첫 번째 셀 선택 ActiveSheet.Cells(1, 1).Select '' Range 두 번째 셀 선택 ActiveSheet.Range("a2").Select Sheets("Sheet1").Cells(3, 1).Select Sheets(1).Cells(4, 1).Select 출처: https:// 더보기
  • 이미지
    2019-02-04
    Sub 인쇄하기()  Dim J As Integer  J = InputBox("몇장인쇄 할까요?")    For J = 1 To J       Worksheets(2).Range("A1") = Worksheets(1).Cells(2 * J, 2)       Worksheets(2).Range("A3") = Worksheets(1).Cells(2 * J + 1, 2)  더보기