Using Joined Data Views vs AND Operator
- 1 Minute to read
- Print
- DarkLight
Using Joined Data Views vs AND Operator
- 1 Minute to read
- Print
- DarkLight
Article summary
Did you find this summary helpful?
Thank you for your feedback
Data Set
There are 2 options for setting multiple conditions.
In our example, we test both options with a small data set:
Data
Email
Number
Amount
1003
25
1003
0
1005
75
Criteria:
Number = 1003 AND Amount > 0
Segment Option 1
Use one segment criterion and add two filters to it.
Result:
Only the contact jane@example.com is selected, as it fulfills both criteria:
Number | Amount | |
jane@example.com | 1003 | 25 |
steve@example.com | 1003 | 0 |
steve@example.com | 1005 | 75 |
Segment Option 2
Use two separate segment criteria.
Result:
Both contacts are selected, as the criteria are considered separately.
Number | Amount | |
jane@example.com | 1003 | 25 |
steve@example.com | 1003 | 0 |
steve@example.com | 1005 | 75 |
Related Topics
Related Data Set - Table Views (tab)
Create Data Views for Cross-table Related Data Queries
Was this article helpful?