본문 바로가기
반응형

전체 글87

[엑셀 매크로] 여러 파일 한번에 취합하는 방법 (Vba, 매크로 이용) 아래코드를 엑셀파일의 개발도구 -> vba -> 모듈창에 복사해서 붙여넣어서 사용하시면 됩니다. Sub CombineSheets() Dim FolderPath As String Dim FileName As String Dim CurrentWorkbook As Workbook Dim NewWorkbook As Workbook Dim ws As Worksheet ' 바탕화면의 RAW 폴더 경로 설정 / 바탕화면에 "RAW"라는 폴더가 있다고 가정했습니다. FolderPath = Environ("USERPROFILE") & "\Desktop\RAW\" ' 새로운 엑셀 파일 생성 Set NewWorkbook = Workbooks.Add ' RAW 폴더에 있는 엑셀 파일들 순환 / 엑셀파일들의 파일 확장자 확인이.. 2023. 6. 17.
[파이썬] 웹 사이트 로그인 자동화 코드 ( selenium 4 사용) 네이버로그인사이트예시 입니다. from selenium import webdriver from selenium.webdriver.chrome.options import Options from selenium.webdriver.chrome.service import Service from webdriver_manager.chrome import ChromeDriverManager from selenium.webdriver.common.by import By import time url = "https://nid.naver.com/nidlogin.login?mode=form&url=https://www.naver.com/" options = Options() options.add_experimental_op.. 2023. 6. 12.
[AICPA] 현재가치 표현 구분하기 1.Present value of anuuity due of $1 = present value of annuity in advance of $1 "Present value of annuity due of $1" refers to the current value of a series of equal cash flows of $1 each, where the cash flows occur at the beginning of each period. It represents the value of receiving or paying $1 at the start of each period. The present value is calculated by discounting these cash flows to th.. 2023. 5. 20.
[무선 마우스 추천] 블루투스 버티컬 마우스 추천! (내돈내산) 코시 블루투스 버티컬 마우스(M4037WLMP) 사용후기 입니다.! 인체공학 버티컬 무선 마우스 패드 세트로 판매가 되고 있고 가격은 15,000원 정도로 무선 버티컬 마우스 중에서는 가장 저가가 아닐까 싶은데요,, 마우스 성능은 현재 약 한달간 사용해본결과 사무용으로는 거의 아쉬운 점이 없었습니다! 무선 연결 속도도 괜찮고 클릭도 잘되어서 사용하는데 불편함이 없었어요! 진짜 저렴한 가격에 잘 샀다는 생각이 들더라구요 가성비 갑 블루투스 버티컬 마우스 찾으시는 분들께 추천드립니다! p.s 모디 제품이라고 포장지에 표시되어있는데 마우스는 코시라고 되어있습니다.! 아마 모디라는 곳에 위탁생산하는게 아닌가 싶어요ㅎㅎ 구매하실분들은 참고해주세요! 2022. 2. 10.
반응형