I have an sheet, where i would like to filter the blank rows in column T and U.

I have certain cases to be considered.

I have few missing rows and have denoted them as missing in column S. If they are missing, I dont want them to be considered for filter condition. In Default they are blank.

The other case is, any one of the rows in column T and U are found blank, has to be filtered. IF both the column are blank also have to be filtered.

I have attached an Image for reference. Could anyone suggest me how I could do it ? I am a beginner in VBA ,Any lead would be helpful.

Sub FC()
Dim ws As Worksheet

Set ws = Sheets("FC")

With ws
.Range("A5:T1000").autofilter Field:=20, Criteria1:="=", Operator:=xlFilterValues
End With
End Sub
tried the above code, It works with column T. How can i include multiple criteria. because with my cases, with column S as missing, I dont Need to consider the complete row. and with my T and U, both blank or any one is blank, then i Need them to be filtered.

Capture1.PNG This is the sample sheet.
Capture2.PNG This is how, I would like to have my result. Such a way that, it neglect the rows containing missing., then it considers the blank rows in column T and U. In the Image, Please ignore the row2, it is by mistake.