Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
' RETURN ONLY FILTERED ROWS
Dim myRange As Range
Selection.AutoFilter ' resets filter
Selection.AutoFilter Field:=1, Criteria1:="Best"
Set myRange = Selection.CurrentRegion.SpecialCells(xlCellTypeVisible)
myRange.Copy
Range("G13").Select
ActiveSheet.Paste
If Worksheet("Sheet1").FilterMode = True Then
' Do something
End If