# Multiple conditions

Learn how to combine conditions to create more advanced audiences.

You can combine multiple conditions using logical operators like [`and`](/reference/cql/expressions/operations/logical/and) and [`or`](/reference/cql/expressions/operations/logical/or). For example, you can create an audience of users who have visited a specific page and have not made a purchase:

```cql
page is "checkout" and not user has made purchase
```

The same logic can be applied to other conditions, such as:

```cql
location's cityName is "New York" and today's weekday is "monday"
```
