Hi Im not sure im in the right place here but wonder if someone can help me please? I have just started using reports from a database system at work and have very little knowledge.In the data base I have 3 fields of hours and 3 fields of minuets I would like to to add. Using the code below I can convert the hours to minuets and add them all. It produces an excel spreadsheet with the total amount of minuets. Instead of the minute totals I would prefer to be able to have a column display the total hours and minuets together.(NVL([TASK_BILLABLE_HOURS],0)*60)+NVL([TASK_BILLABLE_MINS],0)+(NVL([TASK_BILLABLE_TRAVEL_HOURS],0)*60)+NVL([TASK_BILLABLE_TRAVEL_MINS],0)+ (NVL([TASK_BILLABLE_BREAK_HOURS],0)*60)+NVL([TASK_BILLABLE_BREAK_MINS],0)Any help would be appreciatedThanks
↧