Sep 18, 2019 12:29 PM
is there a formula to count the number of days between two date fields?
Sep 18, 2019 12:31 PM
I want to show how many days from start to finish.
Sep 19, 2019 12:38 AM
Hi @George_Zaloom - you can do this with the DATETIME_DIFF()
function:
DATETIME_DIFF(End, Start, 'days')
JB
Sep 19, 2019 12:40 AM
Or, if you only want to count weekdays/working days:
WORKDAY_DIFF(Start, End)
Sep 19, 2019 08:46 AM
this is sooooo helpful!
Thanks a mil!
Dec 07, 2021 10:19 AM
Hi, How I can use DATETIME_DIFF() function, the IDE doesn’t recognizes it
Dec 07, 2021 10:30 AM
Hi, How I can use DATETIME_DIFF() function, the IDE doesn’t recognizes it