Literal Expression
A Literal Expression is a text box containing a FEEL expression.
Usage
Use a literal expression when the decision logic is a formula, mathematical calculation, or simple conditional that doesn't fit well in a table.
Examples
Simple Math:
(MonthlyIncome * 12) + Bonus
If-Then-Else:
if Score > 80 then "High" else "Normal"
Filtering a List:
Orders[Amount > 1000]