Access1 # 13. [Tip] win32com 모듈을 사용한 엑셀 제어 # Excel.Application COM 인스턴스 생성 excel = win32.Dispatch("Excel.Application") excel.Visible = True cell = None # 파일 열기 workbook = excel.Workbooks.Open(self.path) # 시트 순회 for worksheet in workbook.Worksheets: print('This sheet name is .. ', worksheet.Name) # 시트 이름 출력 cell = worksheet.UsedRange.Find(self.tag) # 워크시트의 Range 인스턴스에서 찾기 if not cell: continue worksheet.Range(str(cell.address).replace("$".. 2021. 4. 20. 이전 1 다음