I have a libre office calc spreedsheet containing over 10 sheets.
They have the same structures.
on the standard sheet there are multiple columns with start and end which people need to put their timestamp(C2 = 2015-04-21 02:28 and D2 = 2015-04-21 03:31)
I can calculate the time easily with this doing D2-C2
I need to create another sheet to sum all time that had been done within a day.
What I think of doing is : -Add every cell within the range of sum(firstsheet.C2:lastsheet.C100) that has the same day (ex. 2015-04-21) -Do the same with the D row -Substract the 2 rows so I can only get the total time in hours for one day
Is there any way to do this without using macro?