Forum Discussion
Anonymous
6 years agoNot applicable
Custom Time Intervals
Hi, I've got a few DateTime columns: Job Booking datetime Attempted Acceptance datetime Acceptance datetime For the time differences between them e.g. time between Job Booking to Attempted ...
- Anonymous6 years ago
Mariusz thank you, appreciate it
- 6 years ago
Hi Anonymous ,
If (WEEKDAY(Date, 2) = 6 || WEEKDAY(Date,2) = 7, “”,The formula applied above)
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel
Mariusz
Community Champion
6 years agoHi Anonymous
Sorry, yes I've adjusted my post.
Anonymous
6 years agoNot applicable
Mariusz thank you, appreciate it
- Anonymous6 years agoNot applicable
Hi Mariusz how do I exclude weekends (Sat & Sun) from this function?
i.e. if Job_Booking_DateTime is on Sat or Sun, then exclude from calculation
- Nathaniel_C6 years ago
Community Champion
Hi Anonymous ,
If (WEEKDAY(Date, 2) = 6 || WEEKDAY(Date,2) = 7, “”,The formula applied above)
If this solves your issues, please mark it as the solution, so that others can find it easily. Kudos are nice too.
Nathaniel- Anonymous6 years agoNot applicable
Thank you Nathaniel_C , just wasn't sure where to wrap that formula in the current function. Thanks for clarifying, appreciate it.