got this working and it puts all durations into Hour and minutes so this sorts the first part but then i want to add a grand total for hours and minutes any help would be grateful
First part of formula
local numbervar Hr := Truncate({ADCONT.Duration}/60);
local numbervar Mn := Remainder({ADCONT.Duration},60);
Totext(Hr,0) + "Hr " + ToText(Mn,0) + "m"
First part of formula
local numbervar Hr := Truncate({ADCONT.Duration}/60);
local numbervar Mn := Remainder({ADCONT.Duration},60);
Totext(Hr,0) + "Hr " + ToText(Mn,0) + "m"