Store selected department
Variables (Set)
Set(varSelectedDept, "IT")
Store today flag
Variables (Set)
Set(varToday, Today())
Store edit mode flag
Variables (Set)
Set(varIsEditing, true)
Store salary threshold
Variables (Set)
Set(varSalaryThreshold, 60000)
Store selected email
Variables (Set)
Set(varSelectedEmail, ThisItem.Email)
Clear selected employee
Variables (Set)
Set(varCurrentEmployee, Blank())
Store search text
Variables (Set)
Set(varSearchText, TextInput1.Text)
Store record count
Variables (Set)
Set(varEmployeeCount, CountRows(Employees))
Toggle edit panel
Variables (UpdateContext)
UpdateContext({showEditPanel: true})
Hide edit panel
Variables (UpdateContext)
UpdateContext({showEditPanel: false})
Store local search text
Variables (UpdateContext)
UpdateContext({locSearch: TextInput1.Text})
Toggle sort direction
Variables (UpdateContext)
UpdateContext({locSortDesc: !locSortDesc})
High earner flag
Conditional Logic (If)
If(Salary > 80000, "High", "Standard")
Missing manager check
Conditional Logic (If)
If(IsBlank(Manager), "No Manager", Manager)
Three-tier pay band
Conditional Logic (If)
If(Salary > 100000, "Senior Band", Salary > 50000, "Mid Band", "Junior Band")
Recent joiner flag
Conditional Logic (If)
If(DateDiff(JoiningDate, Today(), Days) <= 90, "New Joiner", "Established")
Notes present check
Conditional Logic (If)
If(Notes = "", "No notes", "Has notes")
Filter result empty check
Blank & Empty Checks
IsEmpty(Filter(Employees, Department = "HR"))
Search result empty check
Blank & Empty Checks
IsEmpty(Search(Employees, "John", Name))
Current date
Date Basics
Today()