AWK: Remove lines ‘Error’ in nth field

awk -F'\t' '$4 !~ /Error/' input.txt > output.txt

Removes lines from a tab-delimited file where the (sub)string “Error” appears in the 4th column/field.

"What in God's holy name are you blathering about?"