I am trying to create a report that will show internet usage per user per site by time block;
ie: holmese 8:00 10:00 11:00 13:40 etc etc.
I used this formula
NumberVar total := Sum ({HttpData.Duration}, {Categories.Category_Name});
NumberVar hours := truncate(total/3600);
NumberVar remains := Remainder(total, 3600);
NumberVar mins := truncate(remains/60);
NumberVar seconds := remains - (mins * 60);
Formula would not create a summary/running total field.
Can anyone help me out. Thanks in Advance.
ie: holmese 8:00 10:00 11:00 13:40 etc etc.
I used this formula
NumberVar total := Sum ({HttpData.Duration}, {Categories.Category_Name});
NumberVar hours := truncate(total/3600);
NumberVar remains := Remainder(total, 3600);
NumberVar mins := truncate(remains/60);
NumberVar seconds := remains - (mins * 60);
Formula would not create a summary/running total field.
Can anyone help me out. Thanks in Advance.