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.
Page 1 / 1
Is this what you want?
IF(
{Date B},
WORKDAY_DIFF( {Date A}, {Date B}),
WORKDAY_DIFF( {Date A}, TODAY())
)
Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.