In a Report, I have an Accumulation of Durations in Minutes, which I need to convert to Hours and Minutes.
The report correctly reports the Accumulated Minutes, but the conversion functions appear a bit Hit and Miss and don't always give correct answer.
The functions are
1: AccumulatedDuration (works as expected)
2: Hours = MOD([AccumulatedDuration];60)
3: Minutes = INT([AccumulatedDuration]/60)
The report is grouped by company, and all function are used within the Company Footer of the report.
The first symptom was the Hours and Minutes did not match the AccumulatedDuration, and appeared to miss the Duration of the last record in Detail section!
A work round of sorts, was to modify the Hours and Minutes functions to include the duration of last record.
This seemed to work for most Companies, but not for a Company with only record, where the Minutes reported were Double those expected.
Question: If the report accurately Accumulates the minutes, why aren't the Hour and Minute calculated correctly.
Is it me?