I need help on a sum expression problem. I did a seach and noticed that there is another post on the issue but they dont resemble my own. Hoping anyone can help me out.
The problem is that, on a report, i have an field that calculates the difference between inspect_start and inspect_end both are (date and time ). There are multiple sectors in a build that will have this inspect start and end. My problem is how to total the output of these fields (sector unbound field ) per build.
[Build] [Total of Unbound]
[Sector] [Unbound]
The sector unbound is calculated by the code below:
any help is appreciated
Thank you
The problem is that, on a report, i have an field that calculates the difference between inspect_start and inspect_end both are (date and time ). There are multiple sectors in a build that will have this inspect start and end. My problem is how to total the output of these fields (sector unbound field ) per build.
[Build] [Total of Unbound]
[Sector] [Unbound]
The sector unbound is calculated by the code below:
Code:
=DateDiff("d",[inspect_Start],[inspect_End]) & "d, " & DateDiff("h",[inspect_Start],[inspect_End]) Mod 24 & "h, " & DateDiff("n",[inspect_Start],[inspect_End]) Mod 60 & "m, " & DateDiff("s",[inspect_Start],[inspect_End]) Mod 60 & "s"
any help is appreciated
Thank you