Power Fx function
Select — Power Fx function reference
Trigger another control’s OnSelect.
Syntax
powerfx
Select( Control [, Row ] [, Column ] )
Examples
powerfx
Select(btnSave)
→ Runs btnSave.OnSelect
powerfx
Select(galOrders, First(galOrders.AllItems))
powerfx
If(IsBlank(txtSearch.Text), Select(btnClearFilter))
Common mistakes & gotchas
- Select programmatically fires the target control's OnSelect — any side effects in that handler run too, it is not just a focus move.
- Chaining several Select calls to drive UI flow can get hard to trace; call shared logic (a variable, a named formula) directly when you control both ends instead.
Related Power Fx functions
From App & navigation