Cheat Sheets/Power BI/OR ||
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

Related DAX functions

From Logical & error handling

← Back to the Power BI (DAX) cheat sheet