2017-10-25 2 views

답변

1

사용 Application.Intersect Method (Excel)을 시험을 여러 범위가 서로와 공유 세포를 교차하는 경우 다음과 같이 같은

내가 지금까지 가지고있는 코드입니다.

Dim cb As CheckBox 
With Sheets("Job_Card_Update") 
    For Each cb In .CheckBoxes 
     If Not Intersect(cb.TopLeftCell, .Range("M13:M20")) Is Nothing Then cb.Delete 
    Next 
End With 
관련 문제