Hello all,
I'm formulating a formula to get the total number of days requested for PTO. The current formula I have is:
DATETIME_DIFF({Event End}, {Event Start},'days')
The output of this displays the days, but also accounts for the weekend days as well which I don't want.
I have a separate table labelled: "Holidays" with a column for holidays showcasing the federal holidays with a format of "1/2/1991". I understand I'd need to use the WORKDAY_DIFF, but don't know how to incorporate that onto: DATETIME_DIFF({Event End}, {Event Start},'days').
Any help would be appreciated.