Cheat Sheets/Power Apps/LookUp
Power Fx function

LookUpPower Fx function reference

Return the first matching record.

Syntax

powerfx
LookUp( Source, Condition [, Result ] )

Examples

powerfx
LookUp(Staff, ID = locId)
One record

The optional third argument projects a single column instead of returning the whole record.

powerfx
LookUp(Products, SKU = txtSKU.Text, Price)
Just the Price field (a number), not the whole record

Field access on a missing record returns blank rather than erroring, so wrap it for a friendly fallback.

powerfx
IfError(LookUp(Accounts, AccountNumber = txtAcct.Text).Name, "Not found")
"Not found" if no account matches

Common mistakes & gotchas

Related Power Fx functions

From Filtering, search & sort

Used in these tutorials

← Back to the Power Apps (Power Fx) cheat sheet