USE ALL.
COMPUTE filter_$=((VarName1=5) and (VarName2=5) and (VarName3=5)).
VARIABLE LABEL filter_$ '(VarName1=5) and (VarName2=5) and (VarName3=5) (
FILTER)'.
VALUE LABELS filter_$ 0 'Not Selected' 1 'Selected'.
FORMAT filter_$ (f1.0).
FILTER BY filter_$.
EXECUTE .
Here I listed only three variables. If you need "一连串10个", then you
should have all of them included.