I have a working formula in my table to calculate the job duration from "job start" to "job end". I am trying to use the same formula to calculate a job response time from "Job Creation date" to "Job start". The formula is as follows:
CONCATENATE(
FLOOR(DATETIME_DIFF({Job Start}, {Job Creation Date}, 'minutes') / 60), ":",
RIGHT("00" & MOD(DATETIME_DIFF({Job Start}, {Job Creation Date}, 'minutes'), 60), 2)
)
However, this doesn't seem to be working as I have a job created date of 20/06/2025 13:00 and a job start of 20/06/2025 13:08 and the result it is giving me is 0:52 - I cannot seem to get this formula to give me the result of 0:08 which is what the actual result should be.
My job duration formula works exactly the same way and gives me the correct answer. Job Duration formula is:
CONCATENATE(
FLOOR(DATETIME_DIFF({Job End}, {Job Start}, 'minutes') / 60), ":",
RIGHT("00" & MOD(DATETIME_DIFF({Job End}, {Job Start}, 'minutes'), 60), 2)
)
Job Start = 20/06/2025 13:08 Job end = 20/06/2025 13:32 and formula results = 0:24 which is correct.
Could someone please help point me in the right direction with the Job Response Formula?