Jun 06, 2022 08:21 AM
Hi Everyone,
I’ve got a table that pulls Google Calendar events for my team into Airtable. It’s there to build an interface that breaks the events down and gives summaries as to how many days are spent On Site, Working from Home, in the Office etc…
I need to find a way to be able to filter out, or mark with a checkbox, the records that happen on, or span a weekend. Google Calendar only brings in start and end dates of events.
Any pointers would be fantastic. I’m quite an experienced Airtable user, but have no experience of coding but willing to try.
Thanks!
Jun 06, 2022 08:49 AM
Hi @Max_Spielbichler
Here is a formula that will tell you if a date in on a weekend or a weekday
IF(OR(WEEKDAY(Date)=0,WEEKDAY(Date)=6), 'Weekend', 'Weekday')
Jun 06, 2022 08:53 AM
This formula would be a good starting point, but it would need to be expanded in order to tell him if any of the dates in between the start date & end date also fall on a weekend.
I’m sure there’s some easy formula to pull this off that involves calculating the total number of days between the start date & the end date, and then subtracting the total number of days from the end date, but I’m not able to dedicate time right now to figuring out this exact formula.
Jun 06, 2022 08:55 AM
@ScottWorld
Good point. I can try to expand on it if this is not enough. I’m guessing you would need to get the DATETAIME_DIFF for the range, then WORKDAY() to find the weekends.
Jun 06, 2022 10:26 AM
Welcome to the Airtable Community!
Try this:
IF(
(
WORKDAY_DIFF(startDate, endDate)
!=
DATETIME_DIFF(endDate, startDate, 'days') + 1
),
"includes weekend"
)
Items to note:
WORKDAY_DIFF
and DATETIME_DIFF
take their inputs in different orders. Thus the dates are flip-flopped for the two functions.
WORKDAY_DIFF
includes both the start and end date in its count, but DATETIME_DIFF
does not. For example, if both dates are the same workday, WORKDAY_DIFF
will give you 1, but DATETIME_DIFF
will give you 0. To account for this difference, I add 1 to the DATETIME_DIFF
.
If the dates have times associated with them (even hidden times), this might not work
If either date is missing, this will give an error
You might run into timezone issues.
Jun 06, 2022 10:31 AM
By itself, this will not work. If the total number of days is 6 or more more, you know there is a weekend. If you have fewer days, you need to take into account the starting day of the week, which is a pain.
Jun 06, 2022 10:48 AM
Yep, exactly. This is why it would be a much more complex formula — although I don’t have time to wrap my brain around it at the moment. :stuck_out_tongue_winking_eye: Although I’m 99.9% sure that this can be done without scripting.
Jun 06, 2022 10:50 AM
Maybe you missed my previous post that has the simpler formula.
Jun 06, 2022 10:53 AM
Oh yes, I did miss that! The forum notification system just jumped me to your most recent comment. Thanks for posting that great formula! Very simple solution! :grinning_face_with_big_eyes: :raised_hands:
Jun 07, 2022 12:34 AM
This is amazing, thank you so much everyone.
Just putting this through it’s paces, and I’ve now managed to get the formula to work with a bit of tweaking in Google Calendar, but now facing 2 new challenges.