본문 바로가기
  • Welcome!
VBA Code

이미지 파일 제거 코드

by ToolBOX01 2023. 2. 9.
반응형

         
    Range("E4:E9").ClearContents
    Range("C11:C17").ClearContents
   

   '// 이미지 파일 제거 코드  
    Dim s As Picture
    Dim rng As Range
    Set rng = Range("A4:C9")
        
    For Each s In ActiveSheet.Pictures
    
        If Not Intersect(rng, s.TopLeftCell) Is Nothing Then
            
            s.Delete
            
        End If
    

   Next s
   


'VBA Code' 카테고리의 다른 글

버튼 이벤트 처리 방법  (0) 2023.02.19
엑셀에서 음수를 양수로, 양수를 음수로 바꾸는 방법  (0) 2023.02.11
유효성 검사  (0) 2023.01.31
진행률 표시  (0) 2023.01.19
with ~End With  (0) 2023.01.12