Cheat Sheets/Power Apps/IsBlank
Power Fx function

IsBlankPower Fx function reference

Test for blank.

Syntax

powerfx
IsBlank( Value )

Examples

powerfx
IsBlank(txtName.Text)
true / false
powerfx
If(IsBlank(cmbAssignee.Selected), Notify("Pick an assignee", NotificationType.Error), SubmitForm(frmTask))
powerfx
IsBlank(LookUp(Staff, Email = User().Email))

Common mistakes & gotchas

Related Power Fx functions

From Conditional logic

Used in these tutorials

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