Drag the number into the **Criteria Set** where the logical condition is **True**.
Divisible by 3 & Odd
(x % 3 == 0) and (x % 2 != 0)
Divisible by 3 & Even
(x % 3 == 0) and (x % 2 == 0)
Not Divisible by 3 & Odd
(x % 3 != 0) and (x % 2 != 0)
Not Divisible by 3 & Even
(x % 3 != 0) and (x % 2 == 0)