Skip to content

Latest commit

 

History

History
16 lines (13 loc) · 380 Bytes

refreshftb.md

File metadata and controls

16 lines (13 loc) · 380 Bytes

Sub refreshFTB()

'
' refreshFTB Macro
'

'
Application.ScreenUpdating = False
ActiveSheet.Unprotect ("1")

    ActiveSheet.Range("$A$10:$a$820").AutoFilter Field:=1, Criteria1:="Y"
ActiveSheet.Protect Password:="1", AllowFormattingCells:=True, AllowFormattingColumns:=True, _
        AllowFormattingRows:=True

Application.ScreenUpdating = True
End Sub