Hello community! Firstly want to say how helpful this community has been, I have been learning so much so thank you all!
I am a formula noob so I apologize for how basic this question is but…
- I want to count the days between two dates in a single timeline column and was able to use:
DAYS({Dates Working#End},{Dates Working#Start})+1
For whatever reason, it always comes up short one day which is why I added “+1” at the end. Here’s the example of the formula without the “+1”
- Since I am collecting these timelines from a form, I have an additional timeline column that can sometimes return empty. When they are filled in, it returns the appropriate result using:
DAYS({Dates Working#End},{Dates Working#Start})+1+DAYS({Additional Dates Working#End},{Additional Dates Working#Start})+1
The issue is when the “Additional Dates Working” Column is empty (which is ~50% of the time) the formula column comes back with an error.
I think I need to use the “IF” function but not sure how and in what order.
Any help is greatly appreciated!