Hello,
How do I combine two conditions in an expression? Example of what I need is in bold
if
(column(“Date applied”) >= column(“Date Hired”)) AND (column(“Date applied”) <= column(“Date Hired”))
“Yes”
else
“No”
Hello,
How do I combine two conditions in an expression? Example of what I need is in bold
if
(column(“Date applied”) >= column(“Date Hired”)) AND (column(“Date applied”) <= column(“Date Hired”))
“Yes”
else
“No”
Previous threads demonstrate the syntax for the if...then...else
functions.
Combining conditions can be done in multiple ways.
You can use the and
function as laid out in the Column Expressions node:
or you can use &&
as demonstrated here:
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.