Introduction to Power Apps
Luise Freese
Azure & Power Platform Architect

If(condition, ifTrue, ifFalse), the workhorse
IsBlank(value) returns true if the value is empty
$$

DisplayMode = If(IsBlank(...), DisplayMode.Disabled, DisplayMode.Edit)
Notify(
"Save failed: check fields",
NotificationType.Error
)
OnFailure → Notify() with NotificationType.Error

Visible = false → removes from layout, tab orderDisplayMode.Disabled → stays in place, grayed, read-onlyDisplayMode.View → for cards inside forms


Power Apps formulas are not a security boundary.

Introduction to Power Apps