Hi, Caroline,
I had a look at your text file and - as holch supposed -
it's a GIGO problem (garbage in - garbage out)

Your relevance equation of Q1 is
"((Q002.NAOK == ""Y"") and (Q003.NAOK == ""Y"") and (Q004.NAOK == ""Y"") and (Q007.NAOK == ""Y"") and (Q005.NAOK == ""Y"") and (Q006.NAOK == ""Y"") and (Q12919.NAOK == ""N""))"
So, if the answer to one of these questions is "N" the respondent will be screened out.
Meaning your quota should be triggered if the answer to one of the questions is "NO"
As - not very clearly - described in the manual:
1.Different questions in one quota -> AND
like:
Q1 "M"
Q2 "Y"
The quota triggers if (Q1=="M" AND Q2=="Y")
2. Same question, different answer options in one quota -> OR
like:
Q1 "A1"
Q1 "A4"
Q1 "A5"
The quota triggers if (Q1=="A1" OR Q1=="A4" OR Q1=="A5")
So if you need an OR between different questions you have to create different quotas.
Quota1:
Q1 "A1"
Quota2:
Q2 "A4"
This way the respondent will be screened out if (Q1=="A1" OR Q2=="A4")
Best regards
Joffm