본문 바로가기
  • Welcome!
VBA VB.Net Code

CELL 초기화

by ToolBOX01 2025. 1. 4.
반응형

전체 Cell 초기화

Public WS As Worksheet
Set WS = ThisWorkbook.Worksheets("File_List")

WS.Cells.ClearContents

특정 열(ROW) 부터 초기화

WS.Rows("8:" & WS.Rows.Count).ClearContents

'VBA VB.Net Code' 카테고리의 다른 글

데이터 베이스와 엑셀  (0) 2024.12.29
PowerPoint와 VBA] 3x3 테이블 만들기  (0) 2024.12.28
PowerPoint와 VBA] 소개  (0) 2024.12.28
EXCEL에 자동으로 이미지 삽입  (0) 2024.12.27
DataGridView  (1) 2024.12.15