Introduction to Power Apps
Luise Freese
Azure & Power Platform Architect

$$

ThisItem.Column$$

Text(ThisItem.DueDate, "[$-en-US]mmm d")
. after an object to see its properties and columnsThisItem.DueDate is a Date, so Text() formats it as Jun 15[$-en-US] sets the language, mmm d sets the pattern
If() in a label's Color propertyIf(ThisItem.Priority = "High", Color.Red, Color.Gray)

If(ThisItem.DueDate < Today(), Color.Red, Color.Black)


Visible = IsEmpty(Gallery1.AllItems) on a placeholder Label
$$
$$

Introduction to Power Apps