Cells.Find(What:="찾을셀Text", After:=ActiveCell, LookIn:=xlFormulas, _
LookAt:=xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, _
MatchCase:=False, MatchByte:=False, SearchFormat:=False).Activate
' 현재셀 변수저장
Set nowAddress = Range(ActiveCell.Address)
' 위로한칸이동 (저장할셀로이동)
nowAddress.Offset(-1,0).Select
' 저장할 셀(변수)
Dim adrSave String
adrSave = ActiveCell.Address
exam ) 변수사용시
- Range("A7:" & adrSave)
' (& 추가)이런식으로 들어간다
'Excel' 카테고리의 다른 글
EXCEL 매크로 지정영역 선택 (0) | 2021.11.15 |
---|---|
excel(엑셀) vba 매크로 확인창 미출력 (0) | 2021.11.15 |
excel 매크로 vba언어 시트생성시 이름지정후 시트생성 (0) | 2021.11.10 |
excel 조건 만족하지 않는 행 삭제 (매크로) (0) | 2021.10.26 |