Power Fx function
Or || — Power Fx function reference
Any condition true.
Syntax
powerfx
Or( Logical1, Logical2, ... ) / Logical1 || Logical2
Examples
powerfx
Or(IsAdmin, IsOwner)
→ true / false
powerfx
Or(role = "Admin", role = "Owner", role = "Manager")
powerfx
IsBlank(txtNotes.Text) || Len(txtNotes.Text) < 500
Common mistakes & gotchas
- Inside Filter(), wrap OR-ed comparisons in Or(...) — separate comma-separated Filter arguments always mean AND, a very common mistake.
- Like And/&&, do not rely on short-circuit evaluation order for side effects; Or is for boolean logic, not control flow.
Related Power Fx functions
From Conditional logic