Sub 필터같은값()
'
' 매크로1 매크로
'
' Ctrl + Shift + F
Dim Find_Value As String
Find_Value = ActiveCell.Value
With ActiveSheet.UsedRange
.AutoFilter ActiveCell.Column, Find_Value, xlFilterValues
End With
End Sub
Sub 필터같은값모두보기()
'
' 매크로1 매크로
'
' Ctrl + Shift + A
With ActiveSheet
If .FilterMode = True Then
.ShowAllData
End If
End With
ActiveCell.Activate
End Sub
'컴퓨터 > 엑셀' 카테고리의 다른 글
vba 여러셀 기호 넣어 셀합치기, 셀나누기 (0) | 2022.04.14 |
---|---|
vba 셀텍스트합치기 (0) | 2022.01.28 |
주소로 변경해 주는 함수 indirect // hyperlink (0) | 2021.08.27 |
VBA 고유값 New Collection 이해하기 (0) | 2021.08.27 |
VBA 시트별 파일로 저장 (0) | 2021.08.25 |