I can help:
You have 7 inclusion rules, and when processing each inclusion rule, a person is assigned a ‘bit’ for each inclusion rule:
Rule 1: 0000001
Rule 2: 0000010
Rule 3: 0000100
Rule 4: 0001000
Rule 5: 0010000
Rule 6: 0100000
Rule 7: 1000000
All Rules: 1111111 = Power(2,7) - 1 = 127
This is how we find the people ‘who match all inclusion rules’.
Atlas shows you this report so you can see the number of people that matched the inclusion rules, but since you’re running these queries directly, you can run queries:
Qualifying people: select * from mjd9zdvaqualified_events
Who matched inclusion rules: select * from mjd9zdvainclusion_events
That should get you started on if you found anyone to enter your cohort (the qualified events) or if no one actually met all inclusion criteria (the inclusion events).