Home |
Search |
Today's Posts |
|
#1
![]() |
|||
|
|||
![]()
I am setting up a time spreadsheet and I want all of my totals to be
calculated in 1/4 increments. Example: IN OUT IN OUT TOTAL 7:01 AM 11:47AM 12:50 PM 4:32 PM = 8:30 hours |
#2
![]() |
|||
|
|||
![]()
Don't know what you total formula is, but let us say it is
=(B2-A2)+(D2-C2) If you want to round this to the nearest quarter hour use =ROUND(((B2-A2)+(D2-C2))*96,0)/96 If you want to round up a quarter hour, use =ROUNDUP(((B2-A2)+(D2-C2))*96,0)/96 -- HTH RP (remove nothere from the email address if mailing direct) "gschmid" wrote in message ... I am setting up a time spreadsheet and I want all of my totals to be calculated in 1/4 increments. Example: IN OUT IN OUT TOTAL 7:01 AM 11:47AM 12:50 PM 4:32 PM = 8:30 hours |
#3
![]() |
|||
|
|||
![]()
Just another way:
=CEILING(B2-A2+D2-C2, 1/96) In article , "Bob Phillips" wrote: If you want to round up a quarter hour, use =ROUNDUP(((B2-A2)+(D2-C2))*96,0)/96 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Formula displays does not calculate | Excel Discussion (Misc queries) | |||
calculate negative or positve difference in time | Excel Discussion (Misc queries) | |||
is it possible to use F9 to manually calculate in a single sheet or single workbook? | Excel Discussion (Misc queries) | |||
What is the formula for getting time difference e.g. ("4 hrs 15 m. | Charts and Charting in Excel |