Thank you in advance!
I have two issues with Autofilter
1. Autofilter is going to the first row instead of row 8
2. Is not filtering out blanks and/ or cells with formula that results in a "-" o dash
Code:
Sub hideemptyrows2()
Worksheets("Indirect Cost Forecast").Activate
Sheets("Indirect Cost Forecast").Activate
Rows("8:8").Select
Selection.AutoFilter Field:=5, Criteria1:="<>"
End Sub
I have two issues with Autofilter
1. Autofilter is going to the first row instead of row 8
2. Is not filtering out blanks and/ or cells with formula that results in a "-" o dash
Code:
Sub hideemptyrows2()
Worksheets("Indirect Cost Forecast").Activate
Sheets("Indirect Cost Forecast").Activate
Rows("8:8").Select
Selection.AutoFilter Field:=5, Criteria1:="<>"
End Sub