Dec 01, 2022 04:37 PM
Hi everyone. I’m looking to create a IF statement where if date B exists, then it will calculate the working days between from date A to date B. However if date B does not exists then it will calculate how many days it’s been from date a based on the real time current date. The if statements that I have been trying to create does not work with multiple formulas embedded.
Solved! Go to Solution.
Dec 01, 2022 08:08 PM
Is this what you want?
IF(
{Date B},
WORKDAY_DIFF( {Date A}, {Date B}),
WORKDAY_DIFF( {Date A}, TODAY())
)
Dec 01, 2022 08:08 PM
Is this what you want?
IF(
{Date B},
WORKDAY_DIFF( {Date A}, {Date B}),
WORKDAY_DIFF( {Date A}, TODAY())
)