'VBA'에 해당되는 글 1건
- 2012.10.30 엑셀(Excel VBA) - 필터링 된 시트에서 선택된 셀 얻기
엑셀(Excel VBA) - 필터링 된 시트에서 선택된 셀 얻기
- 윈도우즈
- 2012. 10. 30. 16:13
자동필터(Autofilter) 된 시트(sheet)에서
컨트롤키(Ctrl) 로 여러 칸(Cell)을 선택한 다음
고른 칸 마다 myFunc 를 실행하려면 다음과 같이 하면 된다.
컨트롤키(Ctrl) 로 여러 칸(Cell)을 선택한 다음
고른 칸 마다 myFunc 를 실행하려면 다음과 같이 하면 된다.
For Each area In Selection.Areas
If area.Count = 1 Then
myFunc (area.Item(1))
Else
Set vCells= area.SpecialCells(xlCellTypeVisible)
For Each cell In vCells
myFunc (cell.Item(1))
Next cell
End If
Next area
If area.Count = 1 Then
myFunc (area.Item(1))
Else
Set vCells= area.SpecialCells(xlCellTypeVisible)
For Each cell In vCells
myFunc (cell.Item(1))
Next cell
End If
Next area
.
'윈도우즈' 카테고리의 다른 글
윈도우7 원격 데스크톱 연결 패치 (0) | 2011.10.24 |
---|---|
윈도우7에서 로그온 배경화면 바꾸는 방법 (0) | 2011.10.20 |
시스템 종료/절전 모드 (0) | 2011.10.06 |
Recent comment