Calculate lead time as a positive value if not blank

Any thoughts?

=ABS(SUMIF(Timestamp@row, <>"") - [Final Project Due Date]@row, <>"")


The following provides a positive value:

=ABS(SUM((Timestamp@row) - [Final Project Due Date]@row))

I need to find a way to exclude rows where dates were not entered so the column can be averaged.

Best Answers

  • Genevieve P.
    Genevieve P. Employee
    Answer ✓

    Hi @Darrin Kiessling

    Instead of using a SUMIF, try using an IF statement with the SUM inside of it, like so:

    =IF(OR(Timestamp@row = "", [Final Project Due Date]@row = ""), "", ABS(SUM(Timestamp@row - [Final Project Due Date]@row)))


    This way you can say that if the Timestamp or the Due Date are blank, return blank, otherwise do your calculation. Let me know if this is what you were looking to do!

    Cheers,

    Genevieve

    Join us at Smartsheet ENGAGE 2024 🎉
    October 8 - 10, Seattle, WA | Register now

  • Genevieve P.
    Genevieve P. Employee
    Answer ✓

    Hi @Darrin Kiessling

    Very close! You could either have a second IF statement instead of using AND, or you could add the statement as another OR option:

    =IF(OR(Timestamp@row = "", [Final Project Due Date]@row = "", Timestamp@row > DATE(2021, 9, 28)), "", ABS(SUM(Timestamp@row - [Final Project Due Date]@row)))


    The OR is essentially just stopping us from needing to do this, writing the IF 3 times:

    =IF(Timestamp@row = "", "",

    IF([Final Project Due Date]@row = "", "",

    IF(Timestamp@row > DATE(2021, 9, 28)), "",

    ABS(SUM(Timestamp@row - [Final Project Due Date]@row))

    )))

    Join us at Smartsheet ENGAGE 2024 🎉
    October 8 - 10, Seattle, WA | Register now

Answers

  • Genevieve P.
    Genevieve P. Employee
    Answer ✓

    Hi @Darrin Kiessling

    Instead of using a SUMIF, try using an IF statement with the SUM inside of it, like so:

    =IF(OR(Timestamp@row = "", [Final Project Due Date]@row = ""), "", ABS(SUM(Timestamp@row - [Final Project Due Date]@row)))


    This way you can say that if the Timestamp or the Due Date are blank, return blank, otherwise do your calculation. Let me know if this is what you were looking to do!

    Cheers,

    Genevieve

    Join us at Smartsheet ENGAGE 2024 🎉
    October 8 - 10, Seattle, WA | Register now

  • Hi @Genevieve P. ,

    Worked like a charm--thanks so much!

    Your new best pal,

    Darrin

  • Hi @Darrin Kiessling

    I'm so glad to hear it! 🙂

    Hope my new best pal has a good weekend.

    Genevieve

    Join us at Smartsheet ENGAGE 2024 🎉
    October 8 - 10, Seattle, WA | Register now

  • A new wrinkle--boss needs Lead Time average to exclude records from before a certain date (so it looks better for us, of course). So I put on my "cook the books" hat and added an AND statement to exclude values from before date certain (2021, 9, 28). I was thrilled when everything lit up like a holiday, but crashed back to Earth as soon as I hit return: "Incorrect Argument." But it lit up!?! Damn you function syntax.

    The Timestamp referenced is (2021, 11, 02), so it fulfills the criteria. And it lit up! I'm at a loss.

  • Genevieve P.
    Genevieve P. Employee
    Answer ✓

    Hi @Darrin Kiessling

    Very close! You could either have a second IF statement instead of using AND, or you could add the statement as another OR option:

    =IF(OR(Timestamp@row = "", [Final Project Due Date]@row = "", Timestamp@row > DATE(2021, 9, 28)), "", ABS(SUM(Timestamp@row - [Final Project Due Date]@row)))


    The OR is essentially just stopping us from needing to do this, writing the IF 3 times:

    =IF(Timestamp@row = "", "",

    IF([Final Project Due Date]@row = "", "",

    IF(Timestamp@row > DATE(2021, 9, 28)), "",

    ABS(SUM(Timestamp@row - [Final Project Due Date]@row))

    )))

    Join us at Smartsheet ENGAGE 2024 🎉
    October 8 - 10, Seattle, WA | Register now

  • Hi @Genevieve P.

    Beautiful--thanks!

    Your BFF,

    Darrin

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!