I have two DAYS calculations, one between Start and Proposal Dates, and one between Proposal & Sold Dates. When the proposal date is empty, I get -19.
Same as when the Sold date is empty, I get -19.
Any suggestions as to why?
Attachments:
You must be
logged in to view attached files.
You’ll need to account for empty values by adding an IFEMPTY() function into your DAYS formula.
Took a few trys at the syntax, but got it. Thanks!
Actual added Days to Today if the end field was blank.
IFEMPTY(<PROPOSAL>; DAYS(<START_DATE>;TODAY());DAYS(<START_DATE>;<PROPOSAL>))
This gives me “days since” Start Date, or “days to” Start Date.
Cheers!
Excellent! I’m glad that worked out for you.