Jun 18, 2019 09:09 AM
Hi,
I am trying to do something and need some help! We are tracking the submitted date of an invoice and the day it was settled. The difference is what we are looking at. The problem is I know how to figure that out, but I am struggling with how to add in the condition that says IF the “Settled Date” is blank, leave the “Days to Settle” blank. That way, if we don;t it settled yet (i.e. there is no date entered into that cell) it won’t have an #ERROR! on every line of the sheet.
Is there anyway to do this? Thanks in advance.
Jun 18, 2019 09:27 AM
This should do it:
IF(
{Settled Date},
<< your date formula here >>
)
Jun 18, 2019 09:30 AM
Beat me to it :slightly_smiling_face: IF(Date2,DATETIME_DIFF(Date2,Date1,‘days’))
Jun 18, 2019 09:36 AM
Thanks - I will give this a try!