DAX function
OR || — DAX function reference
Any condition true.
Syntax
dax
OR(<logical1>, <logical2>) <logical1> || <logical2>
Examples
dax
[IsAdmin] || [IsOwner]
→ true / false
dax
OR(Sales[Channel] = "Online", Sales[Channel] = "Mobile")
→ true / false
dax
Sales[Region] = "West" || Sales[Region] = "Northwest" || Sales[Priority] = "Rush"
→ true / false
Common mistakes & gotchas
- Like AND, OR() only takes two arguments — use || to combine more than two conditions instead of nesting.
- For "value is one of a list" checks, Sales[Region] IN {"West","Northwest","North"} is usually more readable than chained || comparisons and is the idiomatic DAX pattern since the IN operator was added.
Related DAX functions
From Logical & error handling