Power Fx function
Concurrent — Power Fx function reference
Run actions in parallel.
Syntax
powerfx
Concurrent( Formula1, Formula2, ... )
Examples
powerfx
Concurrent(Refresh(A), Refresh(B))
→ Faster load
powerfx
Concurrent(ClearCollect(colStaff, Staff), ClearCollect(colDepts, Departments))
powerfx
Concurrent(Refresh(Orders), Refresh(Customers))
Common mistakes & gotchas
- Concurrent only meaningfully parallelizes formulas involving a data-source round trip — purely local computations run sequentially anyway since there is no wait to overlap.
- Each formula runs independently — one failing does not stop the others, so check results/side effects separately rather than assuming an all-or-nothing outcome.
Related Power Fx functions
From Table shaping