Syntax
if(boolean, value, value)
boolean.if(value, value)
Examples
if(true, 1, 2)
false.if(1, 2)
More Info


if · Notion Formulas · Ben Smith
Returns the first value if the condition is true; otherwise, returns the second value.
if(boolean, value, value)
boolean.if(value, value)
if(true, 1, 2)
false.if(1, 2)
if · Notion Formulas · Ben Smith
Returns the first value if the condition is true; otherwise, returns the second value.